Uses of Interface
org.w3c.dom.NodeList

Packages that use NodeList
org.w3c.dom   
 

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 Document.getElementsByTagName(java.lang.String tagname)
          Returns a NodeList of all the Elements in document order with a given tag name and are contained in the document.
 NodeList Element.getElementsByTagName(java.lang.String name)
          Returns a NodeList of all descendant Elements with a given tag name, in document order.
 NodeList Document.getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)
          Returns a NodeList of all the Elements with a given local name and namespace URI in document order.
 NodeList Element.getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)
          Returns a NodeList of all the descendant Elements with a given local name and namespace URI in document order.