Package | Description |
---|---|
org.pepstock.charba.client.dom |
Contains all classes needed to work with DOM tree, base classes of a DOM tree.
|
Modifier and Type | Method and Description |
---|---|
NodeList<BaseNode> |
BaseNode.getChildNodes()
Returns a list containing all the children of this node.
|
NodeList<BaseElement> |
BaseDocument.getElementsByTagName(String tagName)
Returns an list of elements with the given tag name.
The complete document is searched, including the root node. |
NodeList<BaseElement> |
BaseElement.getElementsByTagName(String tagname)
Returns a list containing all descendant elements, of a particular tag name, from the current element.
|