Uses of Interface
org.w3c.dom.NodeList

Packages that use NodeList
com.japisoft.fastparser.dom   
org.w3c.dom   
 

Uses of NodeList in com.japisoft.fastparser.dom
 

Classes in com.japisoft.fastparser.dom that implement NodeList
 class NodeListImpl
          Implementation for NodeList
 

Methods in com.japisoft.fastparser.dom that return NodeList
 NodeList DocumentImpl.getElementsByTagName(java.lang.String tagname)
          Returns a NodeList of all the Elements with a given tag name in the order in which they would be encountered in a preorder traversal of the Document tree.
 NodeList DocumentImpl.getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)
           
 NodeList ElementImpl.getElementsByTagName(java.lang.String name)
          Returns a NodeList of all descendant elements with a given tag name, in the order in which they would be encountered in a preorder traversal of the Element tree.
 NodeList ElementImpl.getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)
           
 NodeList NodeImpl.getChildNodes()
          A NodeList that contains all children of this node.
 

Uses of NodeList in org.w3c.dom
 

Methods in org.w3c.dom that return NodeList
 NodeList Node.getChildNodes()
          A NodeList that contains all children of this node.
 NodeList Element.getElementsByTagName(java.lang.String name)
          Returns a NodeList of all descendant elements with a given tag name, in the order in which they would be encountered in a preorder traversal of the Element tree.
 NodeList Document.getElementsByTagName(java.lang.String tagname)
          Returns a NodeList of all the Elements with a given tag name in the order in which they would be encountered in a preorder traversal of the Document tree.