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.
|
Java Source File Name | Type | Comment |
Attr.java | Interface | Attr objects represent key-value pairs of attributes on
Element objects. |
CDATASection.java | Interface | This node represents escaped character sequences. |
CharacterData.java | Interface | This interface describes CharacterData XML nodes. |
Comment.java | Interface | This interface describes comment XML nodes. |
Document.java | Interface | Document objects represent XML documents. |
DocumentFragment.java | Interface | A DocumentFragment is a basket into which one may place other
Node objects for future processing. |
DOMException.java | Class | Thrown when DOM exceptions occur. |
Element.java | Interface | This interface represents XML DOM elements, which are the basic building
block of XML. |
EntityReference.java | Interface | This interface represents entity references, such as &foo; . |
NamedNodeMap.java | Interface | Represents a string-to-node map, used in getAttributes . |
Node.java | Interface | This is the base interface for DOM nodes, as obtained from using
XMLParser methods. |
NodeList.java | Interface | This interface represents an immutable ordered collection of nodes. |
ProcessingInstruction.java | Interface | This interface documents the ProcessingInstruction node type. |
Text.java | Interface | This interface describes text nodes, as might occur between tags. |
XMLParser.java | Class | This class represents the client interface to XML parsing. |
XMLTest.java | Class | This class tests all the methods in the GWT XML parser. |