Uses of Interface
org.w3c.dom.NodeList

Packages that use NodeList
org.apache.xalan.lib Extension elements and functions shipped with Xalan-Java 
org.apache.xalan.lib.sql Provides extension functions for connecting to a JDBC data source, executing a query, and working incrementally through a "streamable" result set. 
org.apache.xalan.templates Implements the Templates interface, and defines a set of classes that represent an XSLT stylesheet. 
org.apache.xalan.trace Implementation of Xalan Trace events, for use by a debugger. 
org.apache.xalan.xsltc   
org.apache.xalan.xsltc.dom   
org.apache.xml.dtm.ref   
org.apache.xml.dtm.ref.dom2dtm   
org.apache.xml.utils Implementation of Xalan utility classes. 
org.apache.xpath Implementation of XPath; for the most part, only classes meant for public use are found at this root level of the XPath packages. 
org.apache.xpath.objects Implementation of XPath polymorphic type objects -- this package will grow as XPath objects are expanded to support XML Schema data types. 
org.w3c.dom   
org.w3c.dom.html   
 

Uses of NodeList in org.apache.xalan.lib
 

Methods in org.apache.xalan.lib with parameters of type NodeList
static java.lang.String NodeInfo.systemId(NodeList nodeList)
          systemId returns the system id of the node passed as argument.
static java.lang.String NodeInfo.publicId(NodeList nodeList)
          publicId returns the public identifier of the node passed as argument.
static int NodeInfo.lineNumber(NodeList nodeList)
          lineNumber returns the line number of the node passed as argument.
static int NodeInfo.columnNumber(NodeList nodeList)
          columnNumber returns the column number of the node passed as argument.
 

Uses of NodeList in org.apache.xalan.lib.sql
 

Methods in org.apache.xalan.lib.sql with parameters of type NodeList
 XBooleanStatic XConnection.connect(ExpressionContext exprContext, NodeList list)
           
 void XConnection.addParameterFromElement(NodeList nl)
          Add a section of parameters to the Parameter List Do each element from the list
 

Constructors in org.apache.xalan.lib.sql with parameters of type NodeList
XConnection.XConnection(ExpressionContext exprContext, NodeList list)
           
 

Uses of NodeList in org.apache.xalan.templates
 

Classes in org.apache.xalan.templates that implement NodeList
 class DecimalFormatProperties
          **For advanced use only** Implement xsl:decimal-format.
 class ElemApplyImport
          **For advanced use only** Implement xsl:apply-imports.
 class ElemApplyTemplates
          **For advanced use only** Implement xsl:apply-templates.
 class ElemAttribute
          **For advanced use only** Implement xsl:attribute.
 class ElemAttributeSet
          **For advanced use only** Implement xsl:attribute-set.
 class ElemCallTemplate
          **For advanced use only** Implement xsl:call-template.
 class ElemChoose
          **For advanced use only** Implement xsl:choose.
 class ElemComment
          **For advanced use only** Implement xsl:comment.
 class ElemCopy
          **For advanced use only** Implement xsl:copy.
 class ElemCopyOf
          **For advanced use only** Implement xsl:copy-of.
 class ElemElement
          **For advanced use only** Implement xsl:element
 class ElemEmpty
          **For internal use only** Simple empty elem to push on the stack when nothing else got pushed, so that pop() works correctly.
 class ElemExtensionCall
          **For advanced use only** Implement an extension element.
 class ElemExtensionDecl
          **For internal use only** Implement the declaration of an extension element
 class ElemExtensionScript
          **For internal use only** Implement Script extension element
 class ElemFallback
          **For advanced use only** Implement xsl:fallback.
 class ElemForEach
          **For advanced use only** Implement xsl:for-each.
 class ElemIf
          **For advanced use only** Implement xsl:if.
 class ElemLiteralResult
          **For advanced use only** Implement a Literal Result Element.
 class ElemMessage
          **For advanced use only** Implement xsl:message.
 class ElemNumber
          **For advanced use only** Implement xsl:number.
 class ElemOtherwise
          **For advanced use only** Implement xsl:otherwise.
 class ElemParam
          **For advanced use only** Implement xsl:param.
 class ElemPI
          **For advanced use only** Implement xsl:processing-instruction.
 class ElemSort
          **For advanced use only** Implement xsl:sort.
 class ElemTemplate
          **For advanced use only** Implement xsl:template.
 class ElemTemplateElement
          **For advanced use only** An instance of this class represents an element inside an xsl:template class.
 class ElemText
          **For advanced use only** Implement xsl:template.
 class ElemTextLiteral
          **For advanced use only** Implement a text literal.
 class ElemUnknown
          **For advanced use only** Implement a Literal Result Element.
 class ElemUse
          **For advanced use only** Implement xsl:use.
 class ElemValueOf
          **For advanced use only** Implement xsl:value-of.
 class ElemVariable
          **For advanced use only** Implement xsl:variable.
 class ElemWhen
          **For advanced use only** Implement xsl:when.
 class ElemWithParam
          **For advanced use only** Implement xsl:with-param.
 class KeyDeclaration
          **For internal use only** Holds the attribute declarations for the xsl:keys element.
 class NamespaceAlias
          Object to hold an xsl:namespace element.
 class OutputProperties
          This class provides information from xsl:output elements.
 class Stylesheet
          Represents a stylesheet element.
 class StylesheetComposed
          Represents a stylesheet that has methods that resolve includes and imports.
 class StylesheetRoot
           This class represents the root object of the stylesheet tree.
 class WhiteSpaceInfo
          This is used as a special "fake" template that can be handled by the TemplateList to do pattern matching on nodes.
 

Methods in org.apache.xalan.templates that return NodeList
 NodeList ElemTemplateElement.getChildNodes()
          Return the nodelist (same reference).
 

Uses of NodeList in org.apache.xalan.trace
 

Methods in org.apache.xalan.trace with parameters of type NodeList
static java.lang.String TracerEvent.printNodeList(NodeList l)
          Returns a string representation of the node list.
 

Uses of NodeList in org.apache.xalan.xsltc
 

Methods in org.apache.xalan.xsltc that return NodeList
 NodeList DOM.makeNodeList(int index)
           
 NodeList DOM.makeNodeList(NodeIterator iter)
           
 

Uses of NodeList in org.apache.xalan.xsltc.dom
 

Methods in org.apache.xalan.xsltc.dom that return NodeList
 NodeList DOMAdapter.makeNodeList(int index)
           
 NodeList DOMAdapter.makeNodeList(NodeIterator iter)
           
 NodeList DOMImpl.makeNodeList(int index)
          Create an org.w3c.dom.NodeList from a node in the tree
 NodeList DOMImpl.makeNodeList(NodeIterator iter)
          Create an org.w3c.dom.NodeList from a node iterator The iterator most be started before this method is called
 NodeList MultiDOM.makeNodeList(int index)
           
 NodeList MultiDOM.makeNodeList(NodeIterator iter)
           
 

Uses of NodeList in org.apache.xml.dtm.ref
 

Classes in org.apache.xml.dtm.ref that implement NodeList
 class DTMNodeList
          DTMNodeList gives us an implementation of the DOM's NodeList interface wrapped around a DTM Iterator.
 

Methods in org.apache.xml.dtm.ref that return NodeList
 NodeList DTMNodeProxy.getChildNodes()
           
 NodeList DTMNodeProxy.getElementsByTagName(java.lang.String tagname)
           
 NodeList DTMNodeProxy.getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)
           
 

Uses of NodeList in org.apache.xml.dtm.ref.dom2dtm
 

Methods in org.apache.xml.dtm.ref.dom2dtm that return NodeList
 NodeList DOM2DTMdefaultNamespaceDeclarationNode.getChildNodes()
           
 

Uses of NodeList in org.apache.xml.utils
 

Classes in org.apache.xml.utils that implement NodeList
 class UnImplNode
          **For internal use only** To be subclassed by classes that wish to fake being nodes.
 

Methods in org.apache.xml.utils that return NodeList
 NodeList UnImplNode.getChildNodes()
          Unimplemented.
 NodeList UnImplNode.getElementsByTagName(java.lang.String name)
          Unimplemented.
 NodeList UnImplNode.getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)
          Unimplemented.
 

Uses of NodeList in org.apache.xpath
 

Classes in org.apache.xpath that implement NodeList
 class NodeSet
          **For advanced use only**
 

Methods in org.apache.xpath that return NodeList
static NodeList XPathAPI.selectNodeList(Node contextNode, java.lang.String str)
          Use an XPath string to select a nodelist.
static NodeList XPathAPI.selectNodeList(Node contextNode, java.lang.String str, Node namespaceNode)
          Use an XPath string to select a nodelist.
 NodeList CachedXPathAPI.selectNodeList(Node contextNode, java.lang.String str)
          Use an XPath string to select a nodelist.
 NodeList CachedXPathAPI.selectNodeList(Node contextNode, java.lang.String str, Node namespaceNode)
          Use an XPath string to select a nodelist.
 

Methods in org.apache.xpath with parameters of type NodeList
 void NodeSet.addNodes(NodeList nodelist)
          Copy NodeList members into this nodelist, adding in document order.
 void NodeSet.addNodesInDocOrder(NodeList nodelist, XPathContext support)
          Copy NodeList members into this nodelist, adding in document order.
 

Constructors in org.apache.xpath with parameters of type NodeList
NodeSetDTM.NodeSetDTM(NodeList nodeList, XPathContext xctxt)
          Create a NodeSetDTM, and copy the members of the given DTMIterator into it.
NodeSet.NodeSet(NodeList nodelist)
          Create a NodeSet, and copy the members of the given nodelist into it.
 

Uses of NodeList in org.apache.xpath.objects
 

Methods in org.apache.xpath.objects that return NodeList
 NodeList XObject.nodelist()
          Cast result object to a nodelist.
 NodeList XRTreeFrag.convertToNodeset()
          Cast result object to a nodelist.
 NodeList XNodeSet.nodelist()
          Cast result object to a nodelist.
 NodeList XNodeSetForDOM.nodelist()
          Cast result object to a nodelist.
 

Constructors in org.apache.xpath.objects with parameters of type NodeList
XNodeSetForDOM.XNodeSetForDOM(NodeList nodeList, XPathContext xctxt)
           
 

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.html
 

Methods in org.w3c.dom.html that return NodeList
 NodeList HTMLDocument.getElementsByName(java.lang.String elementName)
          Returns the (possibly empty) collection of elements whose name value is given by elementName.
 



Copyright © 2001 Apache XML Project. All Rights Reserved.