net.sf.saxon.functions.FunctionLibrary Java Examples

The following examples show how to use net.sf.saxon.functions.FunctionLibrary. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: XmlXPathEvaluator.java    From CloverETL-Engine with GNU Lesser General Public License v2.1 4 votes vote down vote up
public XmlXPathEvaluator() {
	FunctionLibrary javaFunctionLibrary = evaluator.getConfiguration().getExtensionBinder("java");
	Configuration.getPlatform().declareJavaClass(javaFunctionLibrary, TAG_NAME_FUNCTIONS_NAMESPACE_URI, TagName.class);
}
 
Example #2
Source File: SaxonExpressionEvaluator.java    From intellij-xquery with Apache License 2.0 4 votes vote down vote up
@Override
public FunctionLibrary getFunctionLibrary() {
    return original.getFunctionLibrary();
}
 
Example #3
Source File: TEFunctionLibrary.java    From teamengine with Apache License 2.0 4 votes vote down vote up
public FunctionLibrary copy() {
    return new TEFunctionLibrary(config, index);
}