Uses of Interface
org.w3c.dom.NodeList

Packages that use NodeList
org.apache.batik.dom Provides an implementation of the DOM level 2 core module. 
org.apache.batik.dom.svg   
org.w3c.dom   
org.w3c.dom.svg   
 

Uses of NodeList in org.apache.batik.dom
 

Classes in org.apache.batik.dom that implement NodeList
protected  class AbstractParentNode.ChildNodes
          To manage the children of this node.
protected  class AbstractParentNode.ElementsByTagName
          To manage a list of nodes.
protected  class AbstractParentNode.ElementsByTagNameNS
          To manage a list of nodes.
 

Fields in org.apache.batik.dom declared as NodeList
protected static NodeList AbstractNode.EMPTY_NODE_LIST
          An empty instance of NodeList.
 

Methods in org.apache.batik.dom that return NodeList
 NodeList AbstractNode.getChildNodes()
          DOM: Implements Node.getChildNodes().
 NodeList AbstractParentNode.getChildNodes()
          DOM: Implements Node.getChildNodes().
 NodeList AbstractParentNode.getElementsByTagName(java.lang.String name)
          DOM: Implements Element.getElementsByTagName(String).
 NodeList AbstractParentNode.getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)
          DOM: Implements Element.getElementsByTagNameNS(String,String).
 

Uses of NodeList in org.apache.batik.dom.svg
 

Methods in org.apache.batik.dom.svg that return NodeList
 NodeList SVGOMSVGElement.getIntersectionList(SVGRect rect, SVGElement referenceElement)
           
 NodeList SVGOMSVGElement.getEnclosureList(SVGRect rect, SVGElement referenceElement)
           
 

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.
 

Uses of NodeList in org.w3c.dom.svg
 

Methods in org.w3c.dom.svg that return NodeList
 NodeList SVGSVGElement.getIntersectionList(SVGRect rect, SVGElement referenceElement)
           
 NodeList SVGSVGElement.getEnclosureList(SVGRect rect, SVGElement referenceElement)
           
 



Copyright © 2002 Apache Software Foundation. All Rights Reserved.