Uses of Interface
org.w3c.dom.Document

Packages that use Document
javax.xml.parsers Provides classes allowing the processing of XML documents. 
org.enhydra.apache.html.dom   
org.enhydra.apache.wml   
org.enhydra.apache.wml.dom   
org.enhydra.apache.xerces.dom   
org.enhydra.apache.xerces.jaxp   
org.enhydra.apache.xerces.parsers   
org.enhydra.apache.xerces.validators.common   
org.enhydra.apache.xml.serialize   
org.w3c.dom   
org.w3c.dom.html   
 

Uses of Document in javax.xml.parsers
 

Methods in javax.xml.parsers that return Document
 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.
 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.
abstract  Document DocumentBuilder.newDocument()
          Obtain a new instance of a DOM Document object to build a DOM tree with.
 

Uses of Document in org.enhydra.apache.html.dom
 

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

Methods in org.enhydra.apache.html.dom that return Document
 Document HTMLObjectElementImpl.getContentDocument()
          DL: temp hack
 Document HTMLIFrameElementImpl.getContentDocument()
          DL: temp hack
 Document HTMLFrameElementImpl.getContentDocument()
          DL: temp hack
 

Uses of Document in org.enhydra.apache.wml
 

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

Uses of Document in org.enhydra.apache.wml.dom
 

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

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

Uses of Document in org.enhydra.apache.xerces.dom
 

Classes in org.enhydra.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.
 

Methods in org.enhydra.apache.xerces.dom that return Document
 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).
 Document DOMImplementationImpl.createDocument(java.lang.String namespaceURI, java.lang.String qualifiedName, DocumentType doctype)
          Introduced in DOM Level 2.
 Document CoreDOMImplementationImpl.createDocument(java.lang.String namespaceURI, java.lang.String qualifiedName, DocumentType doctype)
          Introduced in DOM Level 2.
 Document CoreDocumentImpl.getOwnerDocument()
           
 

Uses of Document in org.enhydra.apache.xerces.jaxp
 

Methods in org.enhydra.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.enhydra.apache.xerces.parsers
 

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

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

Uses of Document in org.enhydra.apache.xerces.validators.common
 

Methods in org.enhydra.apache.xerces.validators.common that return Document
 Document Grammar.getGrammarDocument()
           
 

Methods in org.enhydra.apache.xerces.validators.common with parameters of type Document
protected  void Grammar.setGrammarDocument(Document grammarDocument)
           
 

Uses of Document in org.enhydra.apache.xml.serialize
 

Methods in org.enhydra.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 DOMSerializer.serialize(Document doc)
          Serializes the DOM document.
 void BaseMarkupSerializer.serialize(Document doc)
          Serializes the DOM document using the previously specified writer and output format.
 

Constructors in org.enhydra.apache.xml.serialize with parameters of type Document
OutputFormat(Document doc)
          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)
          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 Node.getOwnerDocument()
          The Document object associated with this node.
 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.
 

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.
 

Methods in org.w3c.dom.html that return Document
 Document HTMLObjectElement.getContentDocument()
          The document this frame contains, if there is any and it is available, or null otherwise.
 Document HTMLFrameElement.getContentDocument()
          The document this frame contains, if there is any and it is available, or null otherwise.
 



Copyright © 1999 The Apache Software Foundation. All Rights reserved.