| 
JavaTM 2 Platform Std. Ed. v1.4.2  | 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Packages that use Document | |
| javax.imageio.metadata | A package of the Java Image I/O API dealing with reading and writing metadata. | 
| javax.xml.parsers | Provides classes allowing the processing of XML documents. | 
| org.w3c.dom | Provides the interfaces for the Document Object Model (DOM) which is a component API of the Java API for XML Processing. | 
| Uses of Document in javax.imageio.metadata | 
| Methods in javax.imageio.metadata that return Document | |
 Document | 
IIOMetadataNode.getOwnerDocument()
Returns null, since IIOMetadataNodes
 do not belong to any Document. | 
| Uses of Document in javax.xml.parsers | 
| Methods in javax.xml.parsers that return Document | |
 Document | 
DocumentBuilder.parse(InputStream is)
Parse the content of the given InputStream as an XML 
 document and return a new DOM Document object. | 
 Document | 
DocumentBuilder.parse(InputStream is,
      String systemId)
Parse the content of the given InputStream as an XML 
 document and return a new DOM Document object. | 
 Document | 
DocumentBuilder.parse(String uri)
Parse the content of the given URI as an XML document and return a new DOM Document object. | 
 Document | 
DocumentBuilder.parse(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.w3c.dom | 
| Methods in org.w3c.dom that return Document | |
 Document | 
DOMImplementation.createDocument(String namespaceURI,
               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. | 
  | 
JavaTM 2 Platform Std. Ed. v1.4.2  | 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.