Eclipse自动添加todo任务

发布于 2024-12-05 20:50:05 字数 98 浏览 3 评论 0原文

Eclipse 有没有办法自动添加 TODO 任务,例如:- //TODO: TO BE TESTED 到函数或类的顶部,以便我可以轻松跟踪尚未测试的更改?

Is there a way in eclipse to automatically add TODO task eg:- //TODO: TO BE TESTED to the top of the function or class so that i can easily keep track of the changes yet to be tested ?

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

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

发布评论

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

评论(2

上课铃就是安魂曲 2024-12-12 20:50:05

您想在生成方法/类时添加 TODO 吗?然后您可以使用代码模板来实现这一点。就像在生成方法时添加 // TODO 自动生成的方法存根 一样,您可以将任何其他注释放在方法之上。 窗口 -> 首选项 -> Java -> 代码风格 -> 代码模板

或者您想将 TODO 添加到当前存在的所有方法/类中吗?这有点难,你可以编写一个插件来为你做到这一点: Eclipse JDT

如果在修改类或方法时应始终创建 TODO,您还可以编写一个 eclipse 插件来监视编辑器中的 CompilationUnit。请参阅 recordModifications() 此处

Do you want to add the TODO when you generate the methods/classes? Then you could use code templates for that. Like // TODO Auto-generated method stub is added when you generate a method you could put any other comment on top of a method. Window -> Preferences -> Java -> Code Style -> Code Templates

Or do you want to add the TODO to all methods/classes which currently do exist? Thats a bit harder, you could write a plugin which does that for you: Eclipse JDT

If that TODO should always be created when you have modified a class or method you could also write an eclipse plugin which monitors the CompilationUnit in the editor. See recordModifications() here

染火枫林 2024-12-12 20:50:05

您可以编辑代码模板并在其中包含 TODO 注释。代码模板位于首选项对话框中

窗口>首选项>爪哇>代码风格>代码模板

不幸的是,这只会对新方法和类有帮助。

You can edit the code templates and include the TODO comment there. Code templates are located on the preferences dialog

Window > Preferences > Java > Code Style > Code Templates

Unfortunately, this will only help for new methods and classes.

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