![JAR search and dependency download from the Maven repository](/logo.png)
org.mvel2.ast.PrototypalFunctionInstance Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tbel Show documentation
Show all versions of tbel Show documentation
TBEL is a powerful expression language for ThingsBoard platform user-defined functions.
Original implementation is based on MVEL.
package org.mvel2.ast;
import org.mvel2.ExecutionContext;
import org.mvel2.integration.VariableResolverFactory;
/**
* @author Mike Brock
*/
public class PrototypalFunctionInstance extends FunctionInstance {
private final VariableResolverFactory resolverFactory;
public PrototypalFunctionInstance(Function function, VariableResolverFactory resolverFactory) {
super(function);
this.resolverFactory = resolverFactory;
}
@Override
public Object call(Object ctx, ExecutionContext execCtx, Object thisValue, VariableResolverFactory factory, Object[] parms) {
return function.call(ctx, execCtx, thisValue, new InvokationContextFactory(factory, resolverFactory), parms);
}
public VariableResolverFactory getResolverFactory() {
return resolverFactory;
}
public String toString() {
return "function_prototype:" + function.getName();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy