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.apache.batik.script Provides an API for interpreting scripting language found in SVG files. 
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.
 class NodeListWrapper
          This class implements a wrapper for a NodeListWrapper.
 

Fields in org.apache.batik.dom declared as NodeList
protected static NodeList AbstractNode.EMPTY_NODE_LIST
          An empty instance of NodeList.
protected  NodeList NodeListWrapper.nodeList
          The wrapped list.
 

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).
 NodeList NodeWrapper.getChildNodes()
          DOM: Implements Node.getChildNodes().
protected  NodeList NodeWrapper.createNodeListWrapper(NodeList nl)
          Creates a wrapper for the given node list.
 NodeList ElementWrapper.getElementsByTagName(java.lang.String name)
          DOM: Implements Element.getElementsByTagName(String).
 NodeList ElementWrapper.getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)
          DOM: Implements Element.getElementsByTagNameNS(String,String).
 NodeList DocumentWrapper.getElementsByTagName(java.lang.String tagname)
          DOM: Implements Document.getElementsByTagName(String).
 NodeList DocumentWrapper.getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)
          DOM: Implements Document.getElementsByTagNameNS(String,String).
protected  NodeList DocumentWrapper.createNodeListWrapper(NodeList nl)
          Creates a wrapper for the given node list.
 

Methods in org.apache.batik.dom with parameters of type NodeList
protected  NodeList NodeWrapper.createNodeListWrapper(NodeList nl)
          Creates a wrapper for the given node list.
protected  NodeList DocumentWrapper.createNodeListWrapper(NodeList nl)
          Creates a wrapper for the given node list.
 

Constructors in org.apache.batik.dom with parameters of type NodeList
NodeListWrapper(DocumentWrapper dw, NodeList nl)
          Creates a new NodeListWrapper.
 

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.apache.batik.script
 

Methods in org.apache.batik.script that return NodeList
 NodeList DocumentProxy.getChildNodes()
          A NodeList that contains all children of this node.
 NodeList DocumentProxy.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 DocumentProxy.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
 

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 © 2001 Apache Software Foundation. All Rights Reserved.