Uses of Interface
org.jaxen.FunctionContext

Packages that use FunctionContext
org.jaxen This package defines the core Jaxen API to the XPath engine. 
 

Uses of FunctionContext in org.jaxen
 

Classes in org.jaxen that implement FunctionContext
 class SimpleFunctionContext
          Simple default implementation of FunctionContext.
 class XPathFunctionContext
          A FunctionContext implementing the core XPath function library, with extensions.
 

Fields in org.jaxen declared as FunctionContext
private  FunctionContext ContextSupport.functionContext
          Function context.
 

Methods in org.jaxen that return FunctionContext
static FunctionContext XPathFunctionContext.getInstance()
          Retrieve the singleton instance.
 FunctionContext ContextSupport.getFunctionContext()
          Retrieve the FunctionContext.
 FunctionContext XPath.getFunctionContext()
          Retrieve the FunctionContext used by this XPath expression.
 FunctionContext BaseXPath.getFunctionContext()
          Retrieve the FunctionContext used by this XPath expression.
protected  FunctionContext BaseXPath.createFunctionContext()
          Create a default FunctionContext.
 

Methods in org.jaxen with parameters of type FunctionContext
 void ContextSupport.setFunctionContext(FunctionContext functionContext)
          Set the FunctionContext.
 void XPath.setFunctionContext(FunctionContext functionContext)
          Set a FunctionContext for use with this XPath expression.
 void BaseXPath.setFunctionContext(FunctionContext functionContext)
          Set a FunctionContext for use with this XPath expression.
 

Constructors in org.jaxen with parameters of type FunctionContext
ContextSupport(NamespaceContext namespaceContext, FunctionContext functionContext, VariableContext variableContext, Navigator navigator)
          Construct.