当我使用Eclipse向Java类添加未实现的方法以修复错误时,方法是自动生成的,并包括// TODO自动生成的方法存根
是否有一种简单的方法来查看包含此注释的所有方法?某种菜单选项?
当我使用Eclipse向Java类添加未实现的方法以修复错误时,方法是自动生成的,并包括// TODO自动生成的方法存根
是否有一种简单的方法来查看包含此注释的所有方法?某种菜单选项?
是否有一种简单的方法来查看包含此注释的所有方法?某种菜单选项?
可以,选择以下其中一项:
Go to Window → Show View → Tasks (Not TaskList). The new view will show up where the "Console" and "Problems" tabs are by default. As mentioned elsewhere, you can see them next to the scroll bar as little blue rectangles if you have the source file in question open. If you just want the // TODO Auto-generated method stub messages (rather than all // TODO messages) you should use the search function (Ctrl-F for ones in this file Search → Java Search → Search string for the ability to specify this workspace, that file, this project, etc.)
除了提到Tasks视图的其他答案之外:
也可以过滤列出的任务,只显示包含文本// TODO自动生成方法存根的TODO。
要做到这一点,你可以点击Filters…按钮,并像这样定义自定义过滤器:
通过这种方式,在Tasks视图中仅找到项目中的一些todo会更容易和更快,并且您不必使用eclipse搜索工具在所有文件中搜索文本(这可能需要相当长的时间)。