org.formulacompiler.compiler
Interface CallFrame.Factory

Enclosing interface:
CallFrame

public static interface CallFrame.Factory

Constructs instances of CallFrame.

Author:
peo

Method Summary
 CallFrame newCallFrame(java.lang.reflect.Method _method, java.lang.Object... _args)
          Constructs a call, possibly the initial call in a chain of calls.
 

Method Detail

newCallFrame

CallFrame newCallFrame(java.lang.reflect.Method _method,
                       java.lang.Object... _args)
Constructs a call, possibly the initial call in a chain of calls.

Parameters:
_method - is the method to be called.
_args - is the list of arguments for the method's parameters.
See Also:
EngineBuilder.newCallFrame(Method, Object...), FormulaCompiler.newCallFrame(Method, Object...)