Uses of Interface
org.w3c.dom.NodeList

Packages that use NodeList
com.sun.xml.tree This package supports in-memory XML documents in the form of a parse tree compliant with the W3C DOM Level 1 Core Recommendation, with extensions including support for XML Namespaces as defined by the current XML proposed recommendation. 
org.w3c.dom The Document Object Model (DOM™) is a Recommendation of the World Wide Web Consortium, defining programming interfaces for XML (and, optionally, HTML) documents. 
 

Uses of NodeList in com.sun.xml.tree
 

Classes in com.sun.xml.tree that implement NodeList
 class ElementNode
          This class represents XML elements in a parse tree, and is often subclassed to add custom behaviors.
(package private)  class com.sun.xml.tree.NodeBase
          Base class for DOM parse tree nodes which may appear in XmlDocument nodes.
(package private)  class com.sun.xml.tree.ParentNode
          This adds an implementation of "parent of" relationships to the NodeBase class.
 class XmlDocument
          This class implements the DOM Document interface, and also provides static factory methods to create document instances.
 

Uses of NodeList in org.w3c.dom
 

Methods in org.w3c.dom that return NodeList
 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 Node.getChildNodes()
          Returns the value of the childNodes property.
 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.
 



Submit Feedback to xml-feedback@java.sun.com