| Package | Description |
|---|---|
| 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.
|
| javax.xml.soap |
Provides the API for creating and building SOAP messages.
|
| org.w3c.dom |
Provides the interfaces for the Document Object Model (DOM) which is a component API of the
Java API for XML Processing.
|
| org.w3c.dom.html | |
| org.w3c.dom.ls |
| Modifier and Type | Method and Description |
|---|---|
Document |
IIOMetadataNode.getOwnerDocument()
Returns
null, since
IIOMetadataNodes do not belong to any
Document.
|
| Modifier and Type | Method and Description |
|---|---|
abstract Document |
DocumentBuilder.newDocument()
Obtain a new instance of a DOM
Document object to build a DOM tree with.
|
Document |
DocumentBuilder.parse(File
Parse the content of the given file as an XML document and return a new DOM
Document object.
|
abstract Document |
DocumentBuilder.parse(InputSource
Parse the content of the given input source as an XML document and return a new DOM
Document object.
|
Document |
DocumentBuilder.parse(InputStream
Parse the content of the given
InputStream as an XML document and return a new DOM
Document object.
|
Document |
DocumentBuilder.parse(InputStream
Parse the content of the given
InputStream as an XML document and return a new DOM
Document object.
|
Document |
DocumentBuilder.parse(String
Parse the content of the given URI as an XML document and return a new DOM
Document object.
|
| Modifier and Type | Class and Description |
|---|---|
class |
SOAPPart
The container for the SOAP-specific portion of a
SOAPMessage object.
|
| Modifier and Type | Method and Description |
|---|---|
Document |
SOAPBody.extractContentAsDocument()
Creates a new DOM
and sets the first child of this
SOAPBody as it's document element.
|
| Modifier and Type | Method and Description |
|---|---|
SOAPBodyElement |
SOAPBody.addDocument(Document
Adds the root node of the DOM
to this
SOAPBody object.
|
| Modifier and Type | Method and Description |
|---|---|
Document |
DOMImplementation.createDocument(String
Creates a DOM Document object of the specified type with its document element.
|
Document |
Node.getOwnerDocument()
The
Document object associated with this node.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
HTMLDocument
An
HTMLDocument is the root of the HTML hierarchy and holds the entire content.
|
| Modifier and Type | Method and Description |
|---|---|
Document |
HTMLFrameElement.getContentDocument()
The document this frame contains, if there is any and it is available, or
null otherwise.
|
Document |
HTMLIFrameElement.getContentDocument()
The document this frame contains, if there is any and it is available, or
null otherwise.
|
Document |
HTMLObjectElement.getContentDocument()
The document this object contains, if there is any and it is available, or
null otherwise.
|
| Modifier and Type | Method and Description |
|---|---|
Document |
LSLoadEvent.getNewDocument()
The document that finished loading.
|
Document |
LSParser.parse(LSInput
Parse an XML document from a resource identified by a
LSInput.
|
Document |
LSParser.parseURI(String
Parse an XML document from a location identified by a URI reference [
IETF RFC 2396].
|