Uses of Interface
org.w3c.dom.traversal.NodeFilter

Packages that use NodeFilter
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.transformer In charge of run-time transformations and the production of result trees. 
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.axes Implementation of XPath LocationPath support -- primary classes are LocPathIterator and UnionPathIterator. 
org.w3c.dom.traversal DOM level 2 interfaces for traversing documents, document trees, and node sets. 
 

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

Methods in org.apache.xalan.lib.sql that return NodeFilter
 NodeFilter ExtensionError.getFilter()
          The filter used to screen nodes.
 NodeFilter XStatement.getFilter()
          The filter used to screen nodes.
 

Uses of NodeFilter in org.apache.xalan.transformer
 

Classes in org.apache.xalan.transformer that implement NodeFilter
 class KeyWalker
          **For internal use only** Walker for a Key() function.
 

Uses of NodeFilter in org.apache.xpath
 

Methods in org.apache.xpath that return NodeFilter
 NodeFilter NodeSet.getFilter()
          The filter object used to screen nodes.
 

Uses of NodeFilter in org.apache.xpath.axes
 

Classes in org.apache.xpath.axes that implement NodeFilter
 class AncestorOrSelfWalker
          Walker for the 'ancestor-or-self' axes.
 class AncestorWalker
          Walker for the 'ancestor' axes.
 class AttributeWalker
          Walker for the 'attribute' axes.
 class AttributeWalkerOneStep
          **For advanced use only** This walker should be used when the walker is at the end of a location path, or is the only step.
 class AxesWalker
          Serves as common interface for axes Walkers, and stores common state variables.
 class ChildWalker
          Walker for the 'child' axes.
 class ChildWalkerMultiStep
          **For advanced use only** A child walker multistep is created while only child steps are found.
 class ChildWalkerOneStep
          **For advanced use only** Walker to use when we only have one step, but it has a predicate.
 class DescendantOrSelfWalker
          Walker for the 'descendant-or-self' axes.
 class DescendantWalker
          Walker for the 'descendant' axes.
 class FilterExprWalker
          Walker for the OP_VARIABLE, or OP_EXTFUNCTION, or OP_FUNCTION, or OP_GROUP, op codes.
 class FollowingSiblingWalker
          Walker for the 'following-sibling' axes.
 class FollowingWalker
          Walker for the 'following' axes.
 class NamespaceWalker
          Walker for the 'namespace' axes.
 class ParentWalker
          Walker for the 'parent' axes.
 class PrecedingSiblingWalker
          Walker for the 'preceding-sibling' axes.
 class PrecedingWalker
          Walker for the 'preceding' axes.
 class ReverseAxesWalker
          Walker for a reverse axes.
 class RootWalker
          Walker for the FROM_ROOT axes.
 class RootWalkerMultiStep
          This class extends ChildWalkerMultiStep to handle the root step of patterns such as "/foo/baz" where the first step is the root, and the rest of the steps are simple child steps.
 class SelfWalker
          Walker for the 'self' axes.
 class SelfWalkerOneStep
          **For advanced use only** Class SelfWalkerOneStep
 

Methods in org.apache.xpath.axes that return NodeFilter
 NodeFilter AxesWalker.getFilter()
          The filter used to screen nodes.
 NodeFilter LocPathIterator.getFilter()
          The filter used to screen nodes.
 NodeFilter UnionPathIterator.getFilter()
          The filter used to screen nodes.
 

Uses of NodeFilter in org.w3c.dom.traversal
 

Methods in org.w3c.dom.traversal that return NodeFilter
 NodeFilter NodeIterator.getFilter()
          The NodeFilter used to screen nodes.
 NodeFilter TreeWalker.getFilter()
          The filter used to screen nodes.
 

Methods in org.w3c.dom.traversal with parameters of type NodeFilter
 NodeIterator DocumentTraversal.createNodeIterator(Node root, int whatToShow, NodeFilter filter, boolean entityReferenceExpansion)
          Create a new NodeIterator over the subtree rooted at the specified node.
 TreeWalker DocumentTraversal.createTreeWalker(Node root, int whatToShow, NodeFilter filter, boolean entityReferenceExpansion)
          Create a new TreeWalker over the subtree rooted at the specified node.
 



Copyright © 2000 Apache XML Project. All Rights Reserved.