DOM_DOMImplementation (This class provides a way to query the capabilities of an implementation of the DOM)
DOM_Element (By far the vast majority of objects (apart from text) that authors encounter when traversing a document are DOM_Element nodes)
DOM_Entity (This interface represents an entity, either parsed or unparsed, in an XML document)
DOM_EntityReference (EntityReference nodes will appear in the structure model when an entity reference is in the source document, or when the user wishes to insert an entity reference)
DOM_NamedNodeMap (NamedNodeMaps are used to represent collections of nodes that can be accessed by name)
DOM_Node (The Node interface is the primary datatype for the entire Document Object Model)
DOM_NodeFilter (Filters are objects that know how to "filter out" nodes)
DOM_NodeIterator (NodeIterators are used to step through a set of nodes e.g)
DOM_NodeList (The NodeList interface provides the abstraction of an ordered collection of nodes)
DOM_Notation (This interface represents a notation declared in the DTD)
DOM_ProcessingInstruction (The ProcessingInstruction interface represents a "processing instruction", used in XML as a way to keep processor-specific information in the text of the document)
DOM_Text (The Text interface represents the textual content (termed character data in XML) of an Element or Attr)
DOM_TreeWalker (DOM_TreeWalker objects are used to navigate a document tree or subtree using the view of the document defined by its whatToShow flags and any filters that are defined for the DOM_TreeWalker)
DOM_XMLDecl (Class to refer to XML Declaration nodes in the DOM)
DOMParser (This class implements the Document Object Model (DOM) interface)
DOMString (DOMString is the generic string class that stores all strings used in the DOM C++ API)
DTDHandler (Receive notification of basic DTD-related events)
XMLDocumentHandler (This abstract class provides the interface for the scanner to return XML document information up to the parser as it scans through the document)
XMLElementDecl (This class defines the core information of an element declaration)
XMLEntityDecl (This class defines that core information that defines an XML entity, no matter what validator is used)
XMLEntityHandler (This abstract class is a callback mechanism for the scanner)
XMLErrorReporter (This abstract class defines a callback mechanism for the scanner)
XMLFormatter (This class provides the basic formatting capabilities that are required to turn the Unicode based XML data from the parsers into a form that can be used on non-Unicode based systems, i.e)