Package org.apache.xpath
Interface ExtensionsProvider
- All Known Implementing Classes:
JAXPExtensionsProvider,TransformerImpl
public interface ExtensionsProvider
Interface that XPath objects can call to obtain access to an
ExtensionsTable.
-
Method Summary
Modifier and Type Method Description booleanelementAvailable(String ns, String elemName)Is the extension element available?ObjectextFunction(String ns, String funcName, Vector argVec, Object methodKey)Execute the extension function.ObjectextFunction(FuncExtFunction extFunction, Vector argVec)Execute the extension function.booleanfunctionAvailable(String ns, String funcName)Is the extension function available?
-
Method Details
-
functionAvailable
Is the extension function available?- Throws:
TransformerException
-
elementAvailable
Is the extension element available?- Throws:
TransformerException
-
extFunction
Object extFunction(String ns, String funcName, Vector argVec, Object methodKey) throws TransformerExceptionExecute the extension function.- Throws:
TransformerException
-
extFunction
Execute the extension function.- Throws:
TransformerException
-