Uses of Interface
org.w3c.dom.NodeList

Packages that use NodeList
org.w3c.dom The org.w3c.dom package provides the Java ME DOM API defined by JSR 280. 
 

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



Copyright © 2000,2004 World Wide Web Consortium (W3C). See the Copyright Notice for details.