在eclipse中为java编辑器添加自定义标记

时间:2016-02-14 14:32:55

标签: java eclipse eclipse-plugin

我一直在尝试将自定义标记添加到eclipse编辑器中很多小时(天),而我却无法让它工作。

我可以通过在我自己plugin.xml上扩展它们来很好地添加问题标记而不会出现任何问题。它做我想要的一切除了标记的图标。我想要一个不同的图标。 这就是我所拥有的:

plugin.xml

<extension
    point="org.eclipse.ui.editors.annotationTypes">
    <type
        markerType="Plugin.MyMarker"
        name="Plugin.MyMarker"/>
</extension>
<extension
    id="MyMarker"
    point="org.eclipse.core.resources.markers">
    <super type="org.eclipse.core.resources.textmarker" />
    <!-- <super type="org.eclipse.core.resources.problemmarker" /> --><!-- if I remove this comment, all works... But I don't want that icon-->
    <persistent value="true"/>
</extension>
<extension
    id="Plugin.markerAnnotationSpecifications"
    point="org.eclipse.ui.editors.markerAnnotationSpecification">
    <specification
        annotationType="Plugin.MyMarker"
        colorPreferenceKey="Plugin.markerColor"
        colorPreferenceValue="100,100,100"
        contributesToHeader="false"
        highlightPreferenceKey="Plugin.markerHighlight"
        highlightPreferenceValue="true"
        includeOnPreferencePage="true"
        icon="icons/icon_mine.gif"
        label="My beautiful label"
        overviewRulerPreferenceKey="Plugin.markerOverview"
        overviewRulerPreferenceValue="true"
        presentationLayer="0"
        symbolicIcon="warning"
        textPreferenceKey="Plugin.tarkerText"
        textPreferenceValue="true"
        textStylePreferenceKey="Plugin.textStyle"
        textStylePreferenceValue="BOX"
        verticalRulerPreferenceKey="Plugin.markerRuler"
        verticalRulerPreferenceValue="true" />

MyPlugin.java

IMarker myMarker = file.createMarker("Plugin.MyMarker");
if(!myMarker.exists()){
    Activator.myLog.log(new Status(Status.ERROR, LOG_PLUGIN_NAME, 15, "There's no marker!", null)); 
}
myMarker.setAttribute(IMarker.SEVERITY, IMarker.SEVERITY_WARNING);
myMarker.setAttribute(IMarker.MESSAGE, "Txt:\nabc");
myMarker.setAttribute(IMarker.PRIORITY, IMarker.PRIORITY_HIGH);
myMarker.setAttribute(IMarker.LINE_NUMBER, line);
myMarker.setAttribute(IMarker.CHAR_START, searchStart);
myMarker.setAttribute(IMarker.CHAR_END, searchEnd);

标记图片位于:icon="icons/icon_mine.gif"

如果我使用上面的代码,注释会出现在注释(General>Editors>TextEditors>Annotations)选项下的菜单中,并带有正确的图像和正确的选项。

我在代码中放置的其他日志消息确认,如果我只是更改我在XML中注释的那行,那么代码执行的结果与结果相同(参见XML注释)。

但是,我仍然无法看到任何告诉我标记是否实际应用或错误(或者日志或控制台中的任何内容,就此而言)。好像我没有设置任何东西,也没有发生任何事情 欢迎任何帮助

1 个答案:

答案 0 :(得分:1)

请检查每个<extension>的ID必须以与项目包相同的子字符串开头。我看到你使用Plugin作为包,包通常以小写字母开头。

请尝试将ID的前缀重命名为plugin.(小写),而不是Plugin