如何以编程方式添加 Eclipse 任务标签(Eclipse 插件开发)?
我正在开发一个 Eclipse 插件。我想在插件中以编程方式添加自定义任务标签。 (让我们说 DOTHIS)稍后,我想在我的自定义任务视图中列出标有 DOTHIS 标记的行
我知道这是使用 Project > 中的 Eclipse UI 完成的属性> Java编译器>任务标签>新的。然后在任务视图中通过配置内容但是我如何在插件中进行这些安排?
提前致谢。
I am developing an Eclipse Plugin. I want to add my custom Task Tag programmatically within the plugin. (Lets say DOTHIS) Later, i want to list the lines marked with DOTHIS tag in my custom taskView
I know that it is done using the Eclipse UI from Project > Properties > Java Compiler > Task Tags > New. and then in the task view by Configure Contents but how can i do these arranegments within the plugin?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从“org.eclipse.jdt.ui”UI 检查“org.eclipse.jdt.internal.ui.preferences.TodoTaskPreferencePage”和“org.eclipse.jdt.internal.ui.preferences.TodoTaskConfigurationBlock.updateModel(DialogField)”的代码插件。
Check code of 'org.eclipse.jdt.internal.ui.preferences.TodoTaskPreferencePage' and 'org.eclipse.jdt.internal.ui.preferences.TodoTaskConfigurationBlock.updateModel(DialogField) ' from 'org.eclipse.jdt.ui' UI plugin.