ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE
Modifier and Type | Method and Description |
---|---|
CDATASection |
createCDATASection(String data)
This method creates a new
CDATASection . |
Comment |
createComment(String data)
This method creates a new
Comment . |
DocumentFragment |
createDocumentFragment()
This method creates a new
DocumentFragment . |
Element |
createElement(String tagName)
This method creates a new
Element . |
ProcessingInstruction |
createProcessingInstruction(String target,
String data)
This method creates a new
ProcessingInstruction . |
Text |
createTextNode(String data)
This method creates a new
Text . |
Element |
getDocumentElement()
This method retrieves the document element.
|
Element |
getElementById(String elementId)
This method retrieves the unique descendent elements which has an id of
elementId . |
NodeList |
getElementsByTagName(String tagname)
This method retrieves any descendent elements which have a tag name of
tagname . |
Node |
importNode(Node importedNode,
boolean deep)
This method imports a node into the current
Document . |
appendChild, cloneNode, getAttributes, getChildNodes, getFirstChild, getLastChild, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, hasAttributes, hasChildNodes, insertBefore, normalize, removeChild, replaceChild, setNodeValue
CDATASection createCDATASection(String data)
CDATASection
.data
- the data of the new CDATASection
CDATASection
Comment createComment(String data)
Comment
.data
- the data of the new Comment
Comment
DocumentFragment createDocumentFragment()
DocumentFragment
.DocumentFragment
Element createElement(String tagName)
Element
.tagName
- the tag name of the new Element
Element
ProcessingInstruction createProcessingInstruction(String target, String data)
ProcessingInstruction
.target
- the target of the new ProcessingInstruction
data
- the data of the new ProcessingInstruction
ProcessingInstruction
Text createTextNode(String data)
Text
.data
- the data of the new Text
Text
Element getDocumentElement()
Element
as its direct child, and this node is returned if it
exists. null
is returned otherwise.Document
Element getElementById(String elementId)
elementId
. Note the attribute which is used as an ID must
be supplied in the DTD of the document. It is not sufficient to give the
Element
to be retrieved an attribute named 'id'.Element
which has an id of
elementId
and belongs to this Document
NodeList getElementsByTagName(String tagname)
tagname
.NodeList
of elements which has a tag name of
tagname
and belong to this Document
Copyright © 2018. All rights reserved.