在 IntelliJ 的 Groovy 编辑器中启用某些 Java 重构

发布于 2024-10-26 06:53:06 字数 364 浏览 0 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

2024-11-02 06:53:06

到目前为止,与 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文