| java.lang.Object javax.xml.xpath.XPathFactory net.sf.saxon.xpath.XPathFactoryImpl
XPathFactoryImpl | public class XPathFactoryImpl extends XPathFactory (Code) | | Saxon implementation of the JAXP 1.3 XPathFactory
|
XPathFactoryImpl | public XPathFactoryImpl()(Code) | | |
newXPath | public XPath newXPath()(Code) | | Create an XPath evaluator
an XPath object, which can be used to compile and execute XPath expressions. |
setXPathFunctionResolver | public void setXPathFunctionResolver(XPathFunctionResolver xPathFunctionResolver)(Code) | | Set a resolver for XPath functions. This will be used to obtain an implementation
of any external function referenced in an XPath expression. This is not required for
system functions, Saxon extension functions, constructor functions named after types,
or extension functions bound using a namespace that maps to a Java class.
Parameters: xPathFunctionResolver - The object used to resolve references to external functions. |
setXPathVariableResolver | public void setXPathVariableResolver(XPathVariableResolver xPathVariableResolver)(Code) | | Set a resolver for XPath variables. This will be used to obtain the value of
any variable referenced in an XPath expression. The variable resolver must be allocated
before the expression is compiled, but it will only be called when the expression
is evaluated.
Parameters: xPathVariableResolver - The object used to resolve references to variables. |
|
|