use of org.openforis.idm.model.expression.internal.CustomFunction in project collect by openforis.
the class ExpressionFactory method lookupFunction.
public CustomFunction lookupFunction(ModelExtensionFunction modelExtensionFunction) {
String namespace = modelExtensionFunction.getPrefix();
CustomFunctions customFunctions = customFunctionsByNamespace.get(namespace);
return (CustomFunction) customFunctions.getFunction(namespace, modelExtensionFunction.getName(), modelExtensionFunction.getArguments());
}
Aggregations