Uses of Interface
org.w3c.dom.Document

Packages that use Document
org.apache.html.dom   
org.apache.xerces.dom   
org.apache.xerces.jaxp   
org.apache.xerces.parsers   
org.apache.xerces.validators.schema   
org.apache.xml.serialize   
org.w3c.dom   
org.w3c.dom.html   
 

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.xerces.dom
 

Classes in org.apache.xerces.dom that implement 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.
 

Fields in org.apache.xerces.dom declared as Document
protected  Document NamedNodeMapImpl.ownerDocument
          Owner document.
 

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

Constructors in org.apache.xerces.dom with parameters of type Document
NamedNodeMapImpl.NamedNodeMapImpl(Document ownerDoc, NamedNodeMapImpl defaults)
          Constructs a named node map.
 

Uses of Document in org.apache.xerces.jaxp
 

Methods in org.apache.xerces.jaxp that return Document
 Document DocumentBuilderImpl.parse(InputSource source)
          Parses the content of the given InputSource and returns a Document object.
 Document DocumentBuilderImpl.newDocument()
          Creates an new Document instance from the underlying DOM implementation.
 

Uses of Document in org.apache.xerces.parsers
 

Fields in org.apache.xerces.parsers declared as Document
protected  Document DOMParser.fDocument
           
 

Methods in org.apache.xerces.parsers that return Document
 Document DOMParser.getDocument()
          Returns the document.
 

Uses of Document in org.apache.xerces.validators.schema
 

Methods in org.apache.xerces.validators.schema that return Document
 Document XSchemaValidator.getSchemaDocument()
          Deprecated.  
 

Uses of Document in org.apache.xml.serialize
 

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

Constructors in org.apache.xml.serialize with parameters of type Document
OutputFormat.OutputFormat(Document doc)
          Constructs a new output format with the proper method, document type identifiers and media type for the specified document.
OutputFormat.OutputFormat(Document doc, java.lang.String encoding, boolean indenting)
          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 an XML 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 and holds the entire content.
 



Copyright © 1999 Apache XML Project. All Rights Reserved.