在 IntelliJ 的 Groovy 编辑器中启用某些 Java 重构
在 IntelliJ IDEA 中,当我在 groovy 类中,并引用 java 类上不存在的属性/字段时,有没有办法启用创建属性重构?
例如:
// Inside Foo.groovy
void method()
{
Bar bar = new Bar(); // Defined in Bar.java
bar.someProperty = "Hello, world"; // bar.someProperty doesn't exist.
}
在上面的示例中,我想访问 someProperty 上的“创建属性”重构选项。有没有办法启用此功能?
注意:我使用的是 IntelliJ 10。
From within IntelliJ IDEA, when I'm within a groovy class, and refer to a property / field on java class that doesn't exist, is there a way to enable the create property refactoring?
Eg:
// Inside Foo.groovy
void method()
{
Bar bar = new Bar(); // Defined in Bar.java
bar.someProperty = "Hello, world"; // bar.someProperty doesn't exist.
}
In the above example, I'd like to get access to the "create property" refactoring option on someProperty. Is there a way to enable this?
Note: I'm using IntelliJ 10.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
到目前为止,与 Java 相比,IntelliJ 中 Groovy 的重构相当有限。原因是 Groovy 是一种可选类型语言,因此 IDE 需要比 Java 更多的“大脑”来进行 Groovy 重构。
Groovy 目前不存在
create property
。恕我直言,您唯一能做的就是在 http://youtrack.jetbrains.net 上提交票证。 Jetbrains 的反应非常灵敏 - 我从自己的经验中知道。
As of now, refactorings for Groovy in IntelliJ are pretty limited compared to Java. The reason for this is Groovy is an optionally typed language, so the IDE needs much more 'brain' for Groovy refactorings than for Java.
create property
currently does not exist for Groovy.IMHO the only thing you can do is filing a ticket on http://youtrack.jetbrains.net. Jetbrains is very responsive - I know from own experience.