Uses of Interface
org.w3c.dom.NodeList

Packages that use NodeList
gnu.xml.dom This is a Free Software DOM Level 2 implementation, supporting these features: "XML", "Events", "MutationEvents", "HTMLEvents" (won't generate them though), "UIEvents" (also won't generate them), "USER-Events" (a conformant extension), and "Traversal" (optional; no TreeWalker yet). 
org.w3c.dom Contains the core and "XML" feature set of the DOM Level 2 Recommendation. 
 

Uses of NodeList in gnu.xml.dom
 

Classes in gnu.xml.dom that implement NodeList
 class DomAttr
           "Attr" implementation.
 class DomCDATA
           "CDATASection" implementation.
 class DomCharacterData
           Abstract "CharacterData" implementation.
 class DomComment
           "Comment" implementation.
 class DomDoctype
           "DocumentType" implementation (with no extensions for supporting any document typing information).
 class DomDocument
           "Document" and "DocumentTraversal" implementation.
 class DomElement
           "Element" implementation.
 class DomEntity
           "Entity" implementation.
 class DomEntityReference
           "EntityReference" implementation (reference to parsed entity).
 class DomExtern
           Abstract implemention of nodes describing external DTD-related objects.
 class DomFragment
           "DocumentFragment" implementation.
 class DomNode
           "Node", "EventTarget", and "DocumentEvent" implementation.
 class DomNotation
           "Notation" implementation.
 class DomNsNode
           Abstract implemention of namespace support.
 class DomPI
           "ProcessingInstruction" (PI) implementation.
 class DomText
           "Text" implementation.
 

Methods in gnu.xml.dom that return NodeList
 NodeList DomNode.getChildNodes()
          DOM L1 Returns a list, possibly empty, of the children of this node.
 NodeList DomNode.getElementsByTagName(java.lang.String tag)
          DOM L1 Creates a NodeList giving array-style access to elements with the specified name.
 NodeList DomNode.getElementsByTagNameNS(java.lang.String namespace, java.lang.String local)
          DOM L2 Creates a NodeList giving array-style access to elements with the specified namespace and local name.
 NodeList DomCharacterData.getChildNodes()
          DOM L1 Returns an empty list of children.
 

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 are encountered in a preorder traversal of this Element tree.
 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 the order in which they are encountered in a preorder traversal of this Element tree.
 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 with a given tag name in the order in which they are encountered in a preorder traversal of the Document tree.
 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 the order in which they are encountered in a preorder traversal of the Document tree.
 



Source code is under GPL (with library exception) in the JAXP project at http://www.gnu.org/software/classpathx/jaxp
This documentation was derived from that source code on 2001-11-20.