Uses of Interface
org.formulacompiler.spreadsheet.SpreadsheetBinder.Section

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

Uses of SpreadsheetBinder.Section in org.formulacompiler.spreadsheet
 

Methods in org.formulacompiler.spreadsheet that return SpreadsheetBinder.Section
 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).
 SpreadsheetBinder.Section SpreadsheetBinder.Section.defineRepeatingSection(Spreadsheet.Range _range, Orientation _orientation, java.lang.reflect.Method _inputMethodReturningIterable, java.lang.Class _inputClass, java.lang.reflect.Method _outputMethodReturningIterableToImplement, java.lang.Class _outputClass)
          Like defineRepeatingSection(org.formulacompiler.spreadsheet.Spreadsheet.Range, Orientation, CallFrame, Class, CallFrame, Class), but constructs the CallFrame instances directly.
 SpreadsheetBinder.Section SpreadsheetBinder.Section.defineRepeatingSection(Spreadsheet.Range _range, Orientation _orientation, java.lang.String _nameOfInputMethodReturningIterable, java.lang.Class _inputClass, java.lang.String _nameOfOutputMethodReturningIterableToImplement, java.lang.Class _outputClass)
          Like defineRepeatingSection(org.formulacompiler.spreadsheet.Spreadsheet.Range, Orientation, CallFrame, Class, CallFrame, Class), but constructs the CallFrame instances directly.
 SpreadsheetBinder.Section SpreadsheetBinder.getRoot()
          Returns the root section, which represents the entire worksheet.
 SpreadsheetBinder.Section EngineBuilder.getRootBinder()
          Returns the root of the SpreadsheetBinder used by this engine builder to associate cells with Java methods.