如何在Eclipse编辑器插件中显示语法错误

如何在Eclipse编辑器插件中显示语法错误,第1张

如何在Eclipse编辑器插件中显示语法错误

您应该使用标记。

从“ The Java Developer’s Guide to Eclipse”派生示例如下:

<extension point="org.eclipse.core.resources.markers"   id="snakesyntax"   name="Snake syntax error">      <super type="org.eclipse.core.resources.problemmarker" />      <super type="org.eclipse.core.resources.textmarker" />      <persistent value="true" /><extension>IMarker marker = res.createMarker("com.ibm.tool.resources.snakesyntax");marker.setAttribute(IMarker.SEVERITY, 0);marker.setAttribute(IMarker.CHAR_START, startOfSyntaxError);marker.setAttribute(IMarker.CHAR_END, endOfSyntaxError);marker.setAttribute(IMarker.LOCATION, "Snake file");marker.setAttribute(IMarker.MESSAGE, "Syntax error");


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5505660.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-13
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存