Uses of Class
org.pepstock.charba.client.dom.NodeList
-
Packages that use NodeList Package Description org.pepstock.charba.client.dom Contains all classes needed to work with DOM tree, base classes of a DOM tree. -
-
Uses of NodeList in org.pepstock.charba.client.dom
Methods in org.pepstock.charba.client.dom that return NodeList Modifier and Type Method 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.
-