Uses of Interface
org.w3c.dom.Document

Packages that use Document
javax.xml.parsers Provides classes allowing the processing of XML documents. 
org.apache.html.dom   
org.apache.wml   
org.apache.wml.dom   
org.apache.xerces.dom   
org.apache.xerces.impl.xs.opti   
org.apache.xerces.jaxp   
org.apache.xerces.parsers   
org.apache.xerces.util   
org.apache.xml.serialize   
org.w3c.dom   
org.w3c.dom.html   
org.w3c.dom.ls   
org.w3c.dom.svg   
 

Uses of Document in javax.xml.parsers
 

Methods in javax.xml.parsers that return Document
abstract  Document DocumentBuilder.newDocument()
          Obtain a new instance of a DOM Document object to build a DOM tree with.
 Document DocumentBuilder.parse(java.io.File f)
          Parse the content of the given file as an XML document and return a new DOM Document object.
abstract  Document DocumentBuilder.parse(InputSource is)
          Parse the content of the given input source as an XML document and return a new DOM Document object.
 Document DocumentBuilder.parse(java.io.InputStream is)
          Parse the content of the given InputStream as an XML document and return a new DOM Document object.
 Document DocumentBuilder.parse(java.io.InputStream is, java.lang.String systemId)
          Parse the content of the given InputStream as an XML document and return a new DOM Document object.
 Document DocumentBuilder.parse(java.lang.String uri)
          Parse the content of the given URI as an XML document and return a new DOM Document object.
 

Uses of Document in org.apache.html.dom
 

Classes in org.apache.html.dom that implement Document
 class HTMLDocumentImpl
          Implements an HTML document.
 

Uses of Document in org.apache.wml
 

Subinterfaces of Document in org.apache.wml
 interface WMLDocument
          The interface is modeled after DOM1 Spec for HTML from W3C.
 

Uses of Document in org.apache.wml.dom
 

Classes in org.apache.wml.dom that implement Document
 class WMLDocumentImpl
           
 

Methods in org.apache.wml.dom that return Document
 Document WMLDOMImplementationImpl.createDocument(java.lang.String namespaceURI, java.lang.String qualifiedName, DocumentType doctype)
           
 

Uses of Document in org.apache.xerces.dom
 

Classes in org.apache.xerces.dom that implement Document
 class CoreDocumentImpl
          The Document interface represents the entire HTML or XML document.
 class DeferredDocumentImpl
          The Document interface represents the entire HTML or XML document.
 class DocumentImpl
          The Document interface represents the entire HTML or XML document.
 class PSVIDocumentImpl
          Our own document implementation, which knows how to create an element with PSVI information.
 

Methods in org.apache.xerces.dom that return Document
 Document CoreDOMImplementationImpl.createDocument(java.lang.String namespaceURI, java.lang.String qualifiedName, DocumentType doctype)
          Introduced in DOM Level 2.
 Document DOMImplementationImpl.createDocument(java.lang.String namespaceURI, java.lang.String qualifiedName, DocumentType doctype)
          Introduced in DOM Level 2.
 Document PSVIDOMImplementationImpl.createDocument(java.lang.String namespaceURI, java.lang.String qualifiedName, DocumentType doctype)
          Introduced in DOM Level 2.
 Document CoreDocumentImpl.getOwnerDocument()
           
 Document ParentNode.getOwnerDocument()
          Find the Document that this Node belongs to (the document in whose context the Node was created).
 Document NodeImpl.getOwnerDocument()
          Find the Document that this Node belongs to (the document in whose context the Node was created).
 

Uses of Document in org.apache.xerces.impl.xs.opti
 

Classes in org.apache.xerces.impl.xs.opti that implement Document
 class DefaultDocument
           
 class SchemaDOM
           
 

Methods in org.apache.xerces.impl.xs.opti that return Document
 Document SchemaParsingConfig.getDocument()
          Returns the Document object.
 Document SchemaDOMParser.getDocument()
          Returns the DOM document object.
 Document SchemaDOMParser.getDocument2()
          Gets the document from SchemaParsingConfig
 Document DefaultNode.getOwnerDocument()
           
 Document ElementImpl.getOwnerDocument()
           
 

Uses of Document in org.apache.xerces.jaxp
 

Methods in org.apache.xerces.jaxp that return Document
 Document DocumentBuilderImpl.newDocument()
          Non-preferred: use the getDOMImplementation() method instead of this one to get a DOM Level 2 DOMImplementation object and then use DOM Level 2 methods to create a DOM Document object.
 Document DocumentBuilderImpl.parse(InputSource is)
           
 

Uses of Document in org.apache.xerces.parsers
 

Methods in org.apache.xerces.parsers that return Document
 Document AbstractDOMParser.getDocument()
          Returns the DOM document object.
 Document DOMParserImpl.parse(LSInput is)
          Parse an XML document from a resource identified by an LSInput.
 Document DOMParserImpl.parseURI(java.lang.String uri)
          Parse an XML document from a location identified by an URI reference.
 

Uses of Document in org.apache.xerces.util
 

Methods in org.apache.xerces.util that return Document
static Document DOMUtil.getDocument(Node node)
           
 

Methods in org.apache.xerces.util with parameters of type Document
static Element DOMUtil.getRoot(Document doc)
           
 

Uses of Document in org.apache.xml.serialize
 

Methods in org.apache.xml.serialize with parameters of type Document
 void BaseMarkupSerializer.serialize(Document doc)
          Deprecated. Serializes the DOM document using the previously specified writer and output format.
 void DOMSerializer.serialize(Document doc)
          Deprecated. Serializes the DOM document.
static java.lang.String OutputFormat.whichDoctypePublic(Document doc)
          Deprecated. Returns the document type public identifier specified for this document, or null.
static java.lang.String OutputFormat.whichDoctypeSystem(Document doc)
          Deprecated. Returns the document type system identifier specified for this document, or null.
static java.lang.String OutputFormat.whichMethod(Document doc)
          Deprecated. Determine the output method for the specified document.
 

Constructors in org.apache.xml.serialize with parameters of type Document
OutputFormat(Document doc)
          Deprecated. Constructs a new output format with the proper method, document type identifiers and media type for the specified document.
OutputFormat(Document doc, java.lang.String encoding, boolean indenting)
          Deprecated. Constructs a new output format with the proper method, document type identifiers and media type for the specified document, and with the specified encoding.
 

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.
 

Uses of Document in org.w3c.dom.html
 

Subinterfaces of Document in org.w3c.dom.html
 interface HTMLDocument
          An HTMLDocument is the root of the HTML hierarchy andholds the entire content.
 

Uses of Document in org.w3c.dom.ls
 

Methods in org.w3c.dom.ls that return Document
 Document LSLoadEvent.getNewDocument()
          The document that finished loading.
 Document LSParser.parse(LSInput input)
          Parse an XML document from a resource identified by a LSInput.
 Document LSParser.parseURI(java.lang.String uri)
          Parse an XML document from a location identified by a URI reference [IETF RFC 2396].
 

Uses of Document in org.w3c.dom.svg
 

Subinterfaces of Document in org.w3c.dom.svg
 interface SVGDocument