Package com.google.gwt.xml.client

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.

Classes

DOMExceptionThrown when DOM exceptions occur.
XMLParserThis class represents the client interface to XML parsing.

Interfaces

AttrAttr objects represent key-value pairs of attributes on Element objects.
CDATASectionThis node represents escaped character sequences.
CharacterDataThis interface describes CharacterData XML nodes.
CommentThis interface describes comment XML nodes.
DocumentDocument objects represent XML documents.
DocumentFragmentA DocumentFragment is a basket into which one may place other Node objects for future processing.
ElementThis interface represents XML DOM elements, which are the basic building block of XML.
EntityReferenceThis interface represents entity references, such as &foo;.
NamedNodeMapRepresents a string-to-node map, used in getAttributes.
NodeThis is the base interface for DOM nodes, as obtained from using XMLParser methods.
NodeListThis interface represents an immutable ordered collection of nodes.
ProcessingInstructionThis interface documents the ProcessingInstruction node type.
TextThis interface describes text nodes, as might occur between tags.