--------------------------------------------------------------------- To unsubscribe, e-mail: j-dev-unsubscr...@xerces.apache.org For additional commands, e-mail: j-dev-h...@xerces.apache.org
Using of DOM mutation events often leads to enormous performance issues
(because events for not owned nodes are not dispatched to the document,
the only way to track these changes is to add a listener to every node
in the document). Also they are not very convenient to use in Java code.
Are there any plans to provide a simple interface to track DOM
mutations? There are notification methods in CoreDocumentImpl class but
all of them are with package-level modifier. These methods seem to be
good candidates for some interface like DocumentObserver.
- DOM mutation events Vlad Arkhipov
- Re: DOM mutation events Michael Glavassevich