Uses of Class
org.apache.xpath.compiler.Compiler

Packages that use Compiler
org.apache.xalan.stree Implementation of the Xalan Source Tree, which is a DOM implementation that is optimized for XSLT processing and the needs of Xalan -- derived nodes can index the children, and, combined with specialized node iterators (and tree walkers) can provide optimal child retrieval. 
org.apache.xpath.axes Implementation of XPath LocationPath support -- primary classes are LocPathIterator and UnionPathIterator. 
org.apache.xpath.compiler Implements an XPath parser which produces an OpMap, and a so-called Compiler which produces an expression tree for fast evaluation. 
 

Uses of Compiler in org.apache.xalan.stree
 

Constructors in org.apache.xalan.stree with parameters of type Compiler
IndexedLocPathIterator.IndexedLocPathIterator(Compiler compiler, int opPos)
          **For advanced use only** Create a IndexedLocPathIterator object.
 

Uses of Compiler in org.apache.xpath.axes
 

Methods in org.apache.xpath.axes with parameters of type Compiler
 void AxesWalker.init(Compiler compiler, int opPos, int stepType)
          Init an AxesWalker.
 void FilterExprWalker.init(Compiler compiler, int opPos, int stepType)
          Init a FilterExprWalker.
 

Constructors in org.apache.xpath.axes with parameters of type Compiler
LocPathIterator.LocPathIterator(Compiler compiler, int opPos)
          **For advanced use only** Create a LocPathIterator object.
LocPathIterator.LocPathIterator(Compiler compiler, int opPos, boolean isMatchPattern)
          **For advanced use only** Create a LocPathIterator object (for match patterns.
UnionPathIterator.UnionPathIterator(Compiler compiler, int opPos)
          **For advanced use only** Constructor.
 

Uses of Compiler in org.apache.xpath.compiler
 

Methods in org.apache.xpath.compiler with parameters of type Compiler
 void XPathParser.initXPath(Compiler compiler, java.lang.String expression, PrefixResolver namespaceContext)
          Given an string, init an XPath object for selections, in order that a parse doesn't have to be done each time the expression is evaluated.
 void XPathParser.initMatchPattern(Compiler compiler, java.lang.String expression, PrefixResolver namespaceContext)
          Given an string, init an XPath object for pattern matches, in order that a parse doesn't have to be done each time the expression is evaluated.
 



Copyright © 2000 Apache XML Project. All Rights Reserved.