在 Eclipse-Plugin 中创建带有注释的自己的标记?
我想使用通用 Eclipse 编辑器在插件中创建一个带有自己注释的标记,而不是添加自己的编辑器。执行操作时将设置标记;
我在自己的编辑器中阅读了一些有关标记的内容,但在通用编辑器中没有阅读。有人有想法吗? 谢谢
I want to create a marker with own annotations within a PlugIn using the common Eclipse Editor and not adding an own editor. The markers will be set when an action is performed;
I read some stuff about markers in an own editor, but not in the common editor. Has anyone an idea?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这并不一定那么困难...看看这些 幻灯片来自我多次举办的课程。
It is not necessarily all that difficult... Have a look at these slides from a course I have run on numerous occations.
可以使用 IResource.createMarker() 在资源(文件/文件夹)上创建标记。你不需要编辑器。现有的编辑器应该能够在资源上显示标记。
Markers can be created on a Resource (file/folder), using IResource.createMarker(). You don't need an editor for that. The existing editors should be able to display the markers on the resource.