如何获取我的光标在Eclipse中的位置的XML Dom节点?

时间:2017-06-25 01:48:29

标签: eclipse eclipse-plugin eclipse-rcp pde content-assist

如何将xml dom节点和xpath放到我正在构建的Eclipse自定义XML编辑器中光标所在的位置。这是一个textEditor。到目前为止,我正在实现IContentAssistProcessor。

1 个答案:

答案 0 :(得分:1)

您可以获取cursor in the text editor的位置,并且可以使用locations of the XML nodes实现存储SAX Locator的XML阅读器。对于鼠标事件,您可以扫描文档并找到最匹配的节点。我不确定这是多么高效,但这是我要开始的地方。