停止eclipse添加@Overide注解

发布于 2024-11-14 23:53:28 字数 353 浏览 3 评论 0原文

我正在使用 J2ME Polish,针对 J2ME MIDP 2.1 进行编译并使用 eclipse 作为编辑器。我一直在为我的项目使用 Formatter 和 Code Clean 设置来提高代码质量。没关系,我调整了多少设置都无法让 Eclipse 停止添加“@Override”:

@Override
public void someFunc(String parameters) {
    //TODO Auto-generated method stub

}

当我单击“添加未实现的方法”时,如何停止 Eclipse 添加“@Override”?

编辑:我应该让其他人知道 J2ME 没有注释。

I am using J2ME Polish, compiling for J2ME MIDP 2.1 and using eclipse as my editor. I have been playing around with the Formatter and Code Clean settings for my project to improve code quality. Not matter, how many settings I tweak I cannot get eclipse to stop adding "@Override":

@Override
public void someFunc(String parameters) {
    //TODO Auto-generated method stub

}

How can I stop eclipse adding "@Override" when I click add un-implemented methods?

Edit: I should let others know that J2ME has no annotations.

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

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

发布评论

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

评论(2

最美的太阳 2024-11-21 23:53:28

不确定为什么要禁用它,但以下是如何做到这一点。

Window > Preferences > Java > Code Style 

并取消选中为新的覆盖方法添加“@Override”注释。

在此处输入图像描述

Not sure why you want to disable it but here's how you can do it.

Window > Preferences > Java > Code Style 

and uncheck Add '@Override' annotation for new overriding methods.

enter image description here

溺渁∝ 2024-11-21 23:53:28

Java > Editor > Save Actions > Missing Code (Tab)

您可以告诉java不要添加@Override注释(仅当您保存文件时缺少注释时),我不确定何时添加未实现的方法。我不得不问为什么你会想要这个,@Override仅添加额外的有用信息。

In

Java > Editor > Save Actions > Missing Code (Tab)

You can tell java not to add the @Override annotation (this is only if it is missing when you save a file), I'm not sure about when adding unimplemented methods. I would have to ask why you would want this, @Override only adds extra useful information.

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