org.mvel2.ast.FunctionInstance Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mvel2 Show documentation
Show all versions of mvel2 Show documentation
MVEL is a powerful expression language for Java-based applications.
It provides a plethora of features and is suited for everything
from the smallest property binding and extraction, to full blown scripts.
package org.mvel2.ast;
import org.mvel2.integration.VariableResolverFactory;
/**
* @author Mike Brock
*/
public class FunctionInstance {
protected final Function function;
public FunctionInstance(Function function) {
this.function = function;
}
public Function getFunction() {
return function;
}
public Object call(Object ctx, Object thisValue, VariableResolverFactory factory, Object[] parms) {
return function.call(ctx, thisValue, factory, parms);
}
}