如何配置“将参数分配给新字段”的行为 Eclipse 中的快速修复?

发布于 2024-07-29 01:56:20 字数 262 浏览 6 评论 0原文

我喜欢 Eclipse 的快速修复。 我经常使用“将参数分配给新字段”,但我非常想调整它以不包含最终关键字。 (GWT RPC 不会序列化最终字段,而且我现在正在执行大量 GWT RPC。)

我无法找到控制此快速修复的设置。 是否有我缺少的设置,或者我是否需要深入研究插件开发文档并制作我自己的“非最终字段”快速修复?

我正在使用 Eclipse 3.4

UPDATE - 将有关标记解析扩展点的答案标记为已接受,因为它看起来没有内置配置选项。

I love Eclipse's quickfixes. I use the "assign parameter to new field" often, but I would very much like to tweak it to not include the final keyword. (GWT RPC doesn't serialize final fields, and I am doing lots of GWT RPC right now.)

I have not been able to find a setting that controls this quickfix. Is there a setting I am missing, or do I need to delve into the plugin development docs and make my own, "non final field" quickfix?

I am using Eclipse 3.4

UPDATE - marked the answer about the marker resolution extension point as accepted, as it looks like there is not a baked in config option.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(5

恰似旧人归 2024-08-05 01:56:20

使用 Java 编辑器的 Eclipse 保存操作。

转到窗口 --> 偏好设置 --> Java --> 编辑--> 保存操作
勾选“保存时执行所选操作”
勾选“添加操作”
添加以下操作“将最终修饰符添加到私有字段”

请参阅随附的屏幕截图。

Eclipse 保存操作

Use the Eclipse Save Actions for the Java Editor.

Go to Window --> Preferences --> Java --> Editor --> Save Actions
Tick "Perform the selected actions on save"
Tick "Addition Actions"
Add the following action "Add final modifier to private fields"

See the attached screen shot.

Eclipse Save Action

2024-08-05 01:56:20

一个不太简单的方法是扩展 org.eclipse.ui.ide.markerResolution 扩展点。

<extension point="org.eclipse.ui.ide.markerResolution">
      <markerResolutionGenerator
         markerType="org.eclipse.core.resources.problemmarker"
         class="org.eclipse.escript.quickfix.QuickFixer"/>
</extension>

更多信息请参见 Eclipse Wiki

A not so easy way is to extend the org.eclipse.ui.ide.markerResolution extension point.

<extension point="org.eclipse.ui.ide.markerResolution">
      <markerResolutionGenerator
         markerType="org.eclipse.core.resources.problemmarker"
         class="org.eclipse.escript.quickfix.QuickFixer"/>
</extension>

More information is available in the Eclipse Wiki

卷耳 2024-08-05 01:56:20

您可能还想查看“穷人的快速修复”(http://www. jave.de/eclipse/poormansquickfix/index.html)插件。 我不久前使用过它,它可能允许您进行所需的调整。 我不能保证它仍然有效...抱歉。

You might also want to look into "Poor Man's Quick Fix" (http://www.jave.de/eclipse/poormansquickfix/index.html) plug-in. I used it a while back and it might allow the tweaking you want. I can't guarantee that it still works... sorry.

顾北清歌寒 2024-08-05 01:56:20

好吧,这很做作,但是:

只有当您使用构造函数的参数时,Quickfix 才会使其最终确定; 从普通函数的参数来看,它使其成为非最终的。 因此,您可以将构造函数设为非构造函数(更改名称并为其指定返回类型),或者将所有参数传递给新函数并在该函数上运行快速修复。 然后改回构造函数,或内联该函数。

就像我说的,做作,但至少很容易。

OK, this is hokey, but:

Quickfix only makes it final if you're working from a constructor's parameter; from a plain function's parameter, it makes it nonfinal. So you could either make the constructor a nonconstructor (change name & give it a return type), or pass all the parameters to a new function and run the quickfix on the function. Then change back to a constructor, or inline the function.

Like I said, hokey, but at least it's easy.

少女七分熟 2024-08-05 01:56:20

最近切换到 Eclipse 3.4,我遇到了“最终”成员问题。

Eclipse 3.4 中有一个新行为,
将私人成员更改为最终成员
(即使您没有输入该关键字)
如果它不可修改(例如,没有声明设置器...)

您可以将其关闭...

Having switched recently to Eclipse 3.4, I run into the 'final' member problem.

There is a new behavior in Eclipse 3.4,
that changes a private member to final
(even if you typed it without that keyword)
if it is not modifiable (for example, no setter declared ...)

You can probably turn it off...

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