将操作悬停在 Eclipse 中自己的注释上(插件)
我创建了一个使用自己的注释标记的插件。现在,当我将鼠标悬停在这个特殊标记上时,我想添加一个特殊的悬停操作。我真的不知道在哪里添加这个动作。我已经阅读了有关 IAnnotationHover 界面的内容,但是如何访问普通工作台文本编辑器的垂直标尺来添加/更改 AnnotationHover?
ps:更准确地说,我使用 Eclipse 的通用编辑器,而不是自己的编辑器...所以我认为我不应该覆盖 SourceViewerConfiguration 或 IAnnotationHover 到目前为止有什么想法吗?
I have created a Plugin that uses an own Annotation Marker. Now I want to add a special Hover Action, when I mouseover this special Marker. I don't really know where to add this action. I allready read about the IAnnotationHover Interface, but how do I access the vertical ruler of the ordinary workbench text editor to add/change the AnnotationHover?
p.s.: just to be more precise, I use the common editor of Eclipse, not an own editor... so I think I should not override SourceViewerConfiguration or the IAnnotationHover
any idea so far?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是在默认 Java 编辑器上创建自定义悬停的一种方法。
这是针对您的特定用例的 @PKeidel 的 LangHover 类的自定义实现,结合 用于检测 java 元素的自定义脚本。请注意,您应该将
ANNOTATION_NAME
的值更改为自定义注释的值,并将getHoverInfo
的返回值更改为您希望自定义悬停包含的任何内容。基本上,这里发生的事情是
elementIsCustomAnnotation
正在检查用户悬停在其上的 java 元素,将它们放入DetectedJavaElements
数组中,然后检查该数组以查找名称等于ANNOTATION_NAME
的注释。Here's a way to create a custom Hover on the Default Java Editor.
Here's a custom implementation of @PKeidel's LangHover class from that question for your specific use case, combined with a custom script to detect java elements. Note that you should change
ANNOTATION_NAME
's value to the value of your custom Annotation, and the return value ofgetHoverInfo
to whatever you want the custom hover to contain.Basically, what is happening here is that
elementIsCustomAnnotation
is checking the java element(s) the user is hovering over, puts them in thedetectedJavaElements
array, and then checks that array to find an Annotation with name equal toANNOTATION_NAME
.