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?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

com.google.gwt.dom.client Javadoc :

Classes for low-level DOM programming. This package contains classes that expose the W3C standard HTML document object model for programmatic access and manipulation of HTML pages directly in client-side Java source, accounting for most browser variations. These classes provide an efficient, type-safe, and IDE-friendly alternative to writing JavaScript Native Interface (JSNI) methods for many common tasks

com.google.gwt.xml.client Javadoc :

Basic classes used in XML DOM parsing and XML document generation. The classes in this package support parsing XML documents and creating new XML documents. The implementation uses the underlying browser.

Briefly, dom.client package is html parser (manipulation of HTML pages) and xml.client is for parsing XML documents. In your situation you can use gwt xml parser and here is good example for it xml parser in gwt

link|improve this answer
Okay, i.e. I cannot use gwt.dom.client for custom documents? And since there aren't any events in gwt.xml.client, I have to write my own implementation. – lucas clemente Jan 2 '11 at 13:03
1  
you cann't use gwt.dom.client for custom documents. yes – hilal Jan 3 '11 at 13:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.