I have a bit of a trouble understanding GWT's architecture. I can see two packages: com.google.gwt.dom.client and com.google.gwt.xml.client. As far as I understand, the first gives a wrapper for the HTML DOM and the second is for own DOM Documents. Is this correct?
What I need is an own Document (i.e. not the HTML Document) with Mutation Events. What would I use in this case? Is this possible in GWT or do I have to write my own DOM implementation, based on com.google.gwt.xml.client?