如何识别Eclipse结构化文档中发生变化的XML节点?
在我自己的 Eclipse 插件中,我可以使用
IStructuredDocumentListener => 将编辑事件捕获在 IStructuredDocument
中。 void regionChanged(RegionChangedEvent event)
或使用 IModelStateListener
=> void modelChanged(IStructuredModel model)
但是我看不到这两个方法如何找出 DOM 中的哪个节点已更改。
例如,使用以下文档...
<?xml version="1.0" encoding="UTF-8"?>
<doc>
<element anAttr="fish">blah</element>
</doc>
如果我编辑了 anAttr 的值或 element 的文本节点子节点,我希望获得具有相关 DOM 节点的事件
In my own Eclipse plugin I can trap editing events in an IStructuredDocument
with
IStructuredDocumentListener
=> void regionChanged(RegionChangedEvent event)
or with IModelStateListener
=> void modelChanged(IStructuredModel model)
But I can't see with either of these how I could find out what node in the DOM has changed.
e.g. with the following document...
<?xml version="1.0" encoding="UTF-8"?>
<doc>
<element anAttr="fish">blah</element>
</doc>
I'd like to get an event with the relevant DOM node if I edited the value of anAttr or the text node child of element
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我为此目的编写的代码片段:
Here is a snippet of the code that I wrote for this purpose: