Package | Description |
---|---|
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.compiler |
Implements an XPath parser which produces an OpMap, and a so-called Compiler
which produces an expression tree for fast evaluation.
|
org.apache.xpath.functions |
Implements XPath functions -- each function is derived from Function,
FunctionOneArg, Function2Args, etc, with number-of-arguments checking being
applied mainly at compile time -- this package only implements XPath functions,
XSLT functions are found in the "templates" package.
|
Constructor | Description |
---|---|
XPath(java.lang.String exprString,
javax.xml.transform.SourceLocator locator,
PrefixResolver prefixResolver,
int type,
javax.xml.transform.ErrorListener errorListener,
FunctionTable aTable) |
Construct an XPath object.
|
Constructor | Description |
---|---|
Compiler(javax.xml.transform.ErrorListener errorHandler,
javax.xml.transform.SourceLocator locator,
FunctionTable fTable) |
Construct a Compiler object with a specific ErrorListener and
SourceLocator where the expression is located.
|
Modifier and Type | Method | Description |
---|---|---|
void |
FuncExtFunctionAvailable.setFunctionTable(FunctionTable aTable) |
The function table is an instance field.
|
Copyright ? 2014 Apache XML Project. All Rights Reserved.