我正在 Eclipse 中编写一个自定义编辑器,并且只是集成了自定义错误识别。现在我面临一个奇怪的问题:我可以将标记添加到我的编辑器中,这些标记可以很好地显示,我也可以在编辑器运行时删除它们。
什么不起作用:当我关闭我的编辑器时,我希望标记消失/被删除。
我现在正在做的是
使用像这样设置的瞬态属性创建标记:marker.setAttribute(IMarker.TRANSIENT, true);
但这似乎并没有改变任何东西。
试图通过源查看器 annotation-model删除所有注释。这不起作用,因为当我尝试挂钩到我的 editorsdispose()
方法或将 a 添加DisposeListener
到我的sourceviewers textwidget时, sourceviewer 已经被处理并getSourceViewer().getAnnotationModel();
返回null
。
我的deleteMarkers
方法:
private void deleteMarkers() {
IAnnotationModel anmod = getSourceViewer().getAnnotationModel();
Iterator<Annotation> it = anmod.getAnnotationIterator();
while (it.hasNext()) {
SimpleMarkerAnnotation a = (SimpleMarkerAnnotation) it.next();
anmod.removeAnnotation(a);
try {
a.getMarker().delete();
} catch (CoreException e) {
e.printStackTrace();
}
}
}
任何帮助表示赞赏^^
MMTTMM
相关分类