Cloud9 中是否有像 Eclipse 中那样的 import class shortcut/feature?

Is there a import class shortcut/feature in Cloud9 as there is in Eclipse?

我正在试验 Cloud 9

这是我当前的代码(在Vehicle.java)

public abstract class Vehicle{
    List<String> tags;
}

Eclipse 有这个快捷方式,您可以在其中滚动尚未导入的 class(在本例中为列表),IDE 将就导入 [=29= 的位置提出建议].

我正在寻找 Cloud9 中的类似功能,因为我相信这将在未来节省大量时间。

我浏览了 Cloud9 IDE guide and saw a code autocompletion cloud9 feature

但是我找不到任何与 Eclipse 具有的 "smart" import class 功能类似的东西。有谁知道目前此功能在 Cloud9 中是否可用?

我看到您用 aws-cloud9 标记了 post。截至本回复之日,AWS Cloud9 不支持 Java 的代码提示。有关 AWS Cloud9 对各种编程语言的支持的更新信息,请参阅 https://docs.aws.amazon.com/cloud9/latest/user-guide/language-support.html

保罗(AWS Cloud9 文档)