Uses of Interface
com.jclark.xsl.expr.ExprContext

Packages that use ExprContext
com.jclark.xsl.expr Expression parsing and evaluation  
com.jclark.xsl.tr The transformation engine  
 

Uses of ExprContext in com.jclark.xsl.expr
 

Methods in com.jclark.xsl.expr with parameters of type ExprContext
 boolean VariantBase.convertToPredicate(ExprContext context)
           
 boolean Pattern.matches(Node node, ExprContext context)
          return true if the given node matches this pattern when evaluated in the given ExpressionContext
 boolean NumberVariant.convertToPredicate(ExprContext context)
           
 boolean Variant.convertToPredicate(ExprContext context)
           
 double NumberExpr.eval(Node node, ExprContext context)
           
 boolean BooleanExpr.eval(Node node, ExprContext context)
           
 NodeIterator NodeSetExpr.eval(Node node, ExprContext context)
          evaluate the expression with a contextNode and ExprContext
 java.lang.String StringExpr.eval(Node node, ExprContext context)
          evaluate with the given contextNode and context
 Variant VariantExpr.eval(Node node, ExprContext context)
           
 java.lang.Object PatternList.get(Node node, ExprContext context)
          finds the first pattern in the list that matches the given Node in the given ExprContext.
 java.util.Enumeration PatternList.getAll(Node node, ExprContext context)
          get an enumeration of all Rules that might match the given Node in the given ExprContext
 Name NameExpr.eval(Node node, ExprContext context)
           
 

Constructors in com.jclark.xsl.expr with parameters of type ExprContext
KeyValuesTable(Pattern pattern, StringExpr valueExpr, Node n, ExprContext context)
           
 

Uses of ExprContext in com.jclark.xsl.tr
 

Subinterfaces of ExprContext in com.jclark.xsl.tr
 interface ProcessContext
          Processing context for a Stylesheet (Sheet) maintains state for a transformation, and actually does some of the transformation work by calling invoke() on Actions
 

Methods in com.jclark.xsl.tr with parameters of type ExprContext
 NodeIterator SortNodeSetExpr.eval(Node node, ExprContext context)