自定义 IMarker 行为
我正在尝试制作一个 Eclipse 插件,它将根据外部输入突出显示某些行的某些颜色。有没有办法指定新 IMarker 的行为,而不是依赖于书签、问题等的基本实现?
谢谢
I'm trying to make an Eclipse plugin that will highlight certain lines certain colors based on outside input. Is there any way to specify the behavior of a new IMarker rather than rely on basic implementation of bookmarks, problems, etc?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我没有完整的解决方案,但我想,我可以给你一些起点。
基本思想是为您的自定义标记创建自定义注释。您可以定义您自己的标记类型,并且注册常量格式化规则它(后一个是我自己的一篇博客文章的无耻链接)。在这种情况下,如果您的代码创建了正确的标记类型,您可以添加有关输出的不同格式。
另一方面,如果您只有一个问题类型,我不知道正确的答案,但注释模型创建扩展似乎就是答案。有关详细信息,请参阅 Eclipse 帮助。
I don't have the complete solution, but I think, I can give you some starting points.
The basic idea is to create custom annotations for your custom markers. You can define your own marker types, and register constant formatting rules for it (the latter one is a shameless link to one of my own blog posts). In this case, if your code creates the correct marker types, you can add the different formatting regarding the output.
On the other hand, if you have only a single problem type, I don't know the correct answer, but the Annotation Model Creation extension seems to be the answer. For details look at the Eclipse help.