Uses of Interface
org.formulacompiler.compiler.CallFrame

Packages that use CallFrame
org.formulacompiler.compiler Contains the public compile-time API of AFC's core functional model compiler. 
org.formulacompiler.spreadsheet Contains the public compile-time API of AFC's spreadsheet compiler, which extends the core functional model compiler. 
 

Uses of CallFrame in org.formulacompiler.compiler
 

Methods in org.formulacompiler.compiler that return CallFrame
 CallFrame CallFrame.chain(java.lang.reflect.Method _method, java.lang.Object... _args)
          Constructs a chained call.
 CallFrame[] CallFrame.getFrames()
          The call frames arranged in proper order to be called one by one, starting with an object of the head's class.
 CallFrame CallFrame.getHead()
          The first call in the chain of calls.
 CallFrame CallFrame.getPrev()
          The previous call in the chain of calls.
static CallFrame FormulaCompiler.newCallFrame(java.lang.reflect.Method _method, java.lang.Object... _args)
          Constructs a call, possibly the initial call in a chain of calls.
 CallFrame CallFrame.Factory.newCallFrame(java.lang.reflect.Method _method, java.lang.Object... _args)
          Constructs a call, possibly the initial call in a chain of calls.
 

Uses of CallFrame in org.formulacompiler.spreadsheet
 

Methods in org.formulacompiler.spreadsheet that return CallFrame
 CallFrame EngineBuilder.newCallFrame(java.lang.reflect.Method _method, java.lang.Object... _args)
          Constructs a call, possibly the initial call in a chain of calls.
 

Methods in org.formulacompiler.spreadsheet with parameters of type CallFrame
 void SpreadsheetBinder.Section.defineInputCell(Spreadsheet.Cell _cell, CallFrame _callChainToCall)
          Marks a given spreadsheet cell as a variable input to the constructed engine and binds it to the given method call chain.
 void SpreadsheetBinder.Section.defineOutputCell(Spreadsheet.Cell _cell, CallFrame _callToImplement)
          Marks a given spreadsheet cell as a computable output of the constructed engine and binds it to the given call.
 SpreadsheetBinder.Section SpreadsheetBinder.Section.defineRepeatingSection(Spreadsheet.Range _range, Orientation _orientation, CallFrame _inputCallChainReturningIterable, java.lang.Class _inputClass, CallFrame _outputCallReturningIterableToImplement, java.lang.Class _outputClass)
          Defines a range in the spreadsheet as a section of similar, repeating rows (or columns).