| Package | Description |
|---|---|
| com.teamdev.jexplorer.dom |
Contains DOM API interfaces and classes.
|
| Modifier and Type | Method and Description |
|---|---|
DOMNodeList |
DOMNode.getChildNodes()
Returns list of child nodes of this node.
|
DOMNodeList |
DOMDocument.getElementsByName(java.lang.String name)
Returns list of HTML elements with the
name attribute. |
DOMNodeList |
DOMElement.getElementsByTagName(java.lang.String tagName)
Returns list of HTML elements with specified
tagName in the current HTML element hierarchy. |
DOMNodeList |
DOMDocument.getElementsByTagName(java.lang.String tagName)
Returns list of HTML elements with the
tagName. |