Uses of Interface
org.w3c.dom.Document
| Package | Description |
|---|---|
| javax.imageio.metadata |
A package of the Java Image I/O API dealing with reading and writing
metadata.
|
| javax.xml.parsers |
Provides the classes for processing XML documents with a SAX (Simple API for XML)
parser or a DOM (Document Object Model) Document builder.
|
| org.w3c.dom |
Provides the interfaces for the Document Object Model (DOM).
|
| org.w3c.dom.ls |
Provides interfaces for DOM Level 3 Load and Save.
|
-
Uses of Document in javax.imageio.metadata
Methods in javax.imageio.metadata that return Document Modifier and Type Method Description DocumentIIOMetadataNode. getOwnerDocument()Returnsnull, sinceIIOMetadataNodes do not belong to anyDocument. -
Uses of Document in javax.xml.parsers
Methods in javax.xml.parsers that return Document Modifier and Type Method Description abstract DocumentDocumentBuilder. newDocument()Obtain a new instance of a DOMDocumentobject to build a DOM tree with.DocumentDocumentBuilder. parse(File f)Parse the content of the given file as an XML document and return a new DOMDocumentobject.DocumentDocumentBuilder. parse(InputStream is)Parse the content of the givenInputStreamas an XML document and return a new DOMDocumentobject.DocumentDocumentBuilder. parse(InputStream is, String systemId)Parse the content of the givenInputStreamas an XML document and return a new DOMDocumentobject.DocumentDocumentBuilder. parse(String uri)Parse the content of the given URI as an XML document and return a new DOMDocumentobject.abstract DocumentDocumentBuilder. parse(InputSource is)Parse the content of the given input source as an XML document and return a new DOMDocumentobject. -
Uses of Document in org.w3c.dom
Methods in org.w3c.dom that return Document Modifier and Type Method Description DocumentDOMImplementation. createDocument(String namespaceURI, String qualifiedName, DocumentType doctype)Creates a DOM Document object of the specified type with its document element.DocumentNode. getOwnerDocument()TheDocumentobject associated with this node. -
Uses of Document in org.w3c.dom.ls
Methods in org.w3c.dom.ls that return Document Modifier and Type Method Description DocumentLSLoadEvent. getNewDocument()The document that finished loading.DocumentLSParser. parse(LSInput input)Parse an XML document from a resource identified by aLSInput.DocumentLSParser. parseURI(String uri)Parse an XML document from a location identified by a URI reference [IETF RFC 2396].