Uses of Interface
org.w3c.dom.Document

Packages that use Document
gnu.xml.dom This is a Free Software DOM Level 2 implementation, supporting these features: "XML", "Events", "MutationEvents", "HTMLEvents" (won't generate them though), "UIEvents" (also won't generate them), "USER-Events" (a conformant extension), and "Traversal" (optional; no TreeWalker yet). 
gnu.xml.pipeline This package exposes a kind of XML processing pipeline, based on sending SAX events, which can be used as components of application architectures. 
javax.xml.parsers Bootstrapping APIs for JAXP parsers. 
org.w3c.dom Contains the core and "XML" feature set of the DOM Level 2 Recommendation. 
 

Uses of Document in gnu.xml.dom
 

Classes in gnu.xml.dom that implement Document
 class DomDocument
           "Document" and "DocumentTraversal" implementation.
 

Methods in gnu.xml.dom that return Document
 Document DomNode.getOwnerDocument()
          DOM L1 (modified in L2) Returns the owner document.
 Document DomImpl.createDocument(java.lang.String namespaceURI, java.lang.String rootName, DocumentType doctype)
          DOM L2 Creates and returns a Document, populated only with a root element and optionally a document type (if that was provided).
 

Constructors in gnu.xml.dom with parameters of type Document
DomNode(Document owner)
          Constructs a node and associates it with its owner.
DomNotation(Document owner, java.lang.String name, java.lang.String publicId, java.lang.String systemId)
          Constructs a Notation node associated with the specified document, with the specified descriptive data.
DomFragment(Document owner)
          Constructs a DocumentFragment node associated with the specified document.
DomEntity(Document owner, java.lang.String name, java.lang.String publicId, java.lang.String systemId, java.lang.String notation)
          Constructs an Entity node associated with the specified document, with the specified descriptive data.
DomAttr(Document owner, java.lang.String namespaceURI, java.lang.String name)
          Constructs an Attr node associated with the specified document.
DomNamedNodeMap(Document owner)
          Constructs an empty map associated with the specified document.
DomElement(Document owner, java.lang.String namespaceURI, java.lang.String name)
          Constructs an Element node associated with the specified document.
DomText(Document owner, java.lang.String value)
          Constructs a text node associated with the specified document and holding the specified data.
DomText(Document owner, char[] buf, int off, int len)
           
DomComment(Document owner, java.lang.String value)
          Constructs a comment node associated with the specified document and holding the specified data.
DomEntityReference(Document owner, java.lang.String name)
          Constructs an EntityReference node associated with the specified document.
DomPI(Document owner, java.lang.String target, java.lang.String data)
          Constructs a ProcessingInstruction node associated with the specified document, with the specified data.
DomCDATA(Document owner, java.lang.String value)
          Constructs a CDATA section node associated with the specified document and holding the specified data.
DomCDATA(Document owner, char[] buf, int off, int len)
           
 

Uses of Document in gnu.xml.pipeline
 

Methods in gnu.xml.pipeline that return Document
 Document DomConsumer.getDocument()
          Returns the document constructed from the preceding sequence of events.
protected  Document DomConsumer.Handler.getDocument()
          Returns the document under construction.
 

Uses of Document in javax.xml.parsers
 

Methods in javax.xml.parsers that return Document
abstract  Document DocumentBuilder.newDocument()
           
 Document DocumentBuilder.parse(java.io.File file)
          Constructs an InputSource from the file, and invokes parse ().
abstract  Document DocumentBuilder.parse(InputSource source)
           
 Document DocumentBuilder.parse(java.io.InputStream stream)
          Avoid using this call; provide the system ID wherever possible.
 Document DocumentBuilder.parse(java.io.InputStream stream, java.lang.String systemID)
           
 Document DocumentBuilder.parse(java.lang.String uri)
           
 

Uses of Document in org.w3c.dom
 

Methods in org.w3c.dom that return Document
 Document DOMImplementation.createDocument(java.lang.String namespaceURI, java.lang.String qualifiedName, DocumentType doctype)
          Creates a DOM Document object of the specified type with its document element.
 Document Node.getOwnerDocument()
          The Document object associated with this node.
 



Source code is under GPL (with library exception) in the JAXP project at http://www.gnu.org/software/classpathx/jaxp
This documentation was derived from that source code on 2001-11-20.