|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Spreadsheet.Cell | |
---|---|
org.formulacompiler.spreadsheet | Contains the public compile-time API of AFC's spreadsheet compiler, which extends the core functional model compiler. |
Uses of Spreadsheet.Cell in org.formulacompiler.spreadsheet |
---|
Methods in org.formulacompiler.spreadsheet that return Spreadsheet.Cell | |
---|---|
Spreadsheet.Cell |
Spreadsheet.Range.getBottomRight()
Returns the bottom right corner of the range (on the rightmost sheet of the range). |
Spreadsheet.Cell |
Spreadsheet.getCell(int _sheetIndex,
int _columnIndex,
int _rowIndex)
Get a cell by its index. |
Spreadsheet.Cell |
Spreadsheet.getCell(java.lang.String _rangeName)
Get a cell by its range name. |
Spreadsheet.Cell |
Spreadsheet.getCellA1(java.lang.String _a1Name)
Get a cell by its A1-style name. |
Spreadsheet.Cell[] |
Spreadsheet.Row.getCells()
Returns the cells defined in the row. |
Spreadsheet.Cell |
Spreadsheet.Range.getTopLeft()
Returns the top left corner of the range (on the leftmost sheet of the range). |
Methods in org.formulacompiler.spreadsheet that return types with arguments of type Spreadsheet.Cell | |
---|---|
java.lang.Iterable<Spreadsheet.Cell> |
Spreadsheet.Range.cells()
Allows iteration over the cells contained in the range. |
Methods in org.formulacompiler.spreadsheet with parameters of type Spreadsheet.Cell | |
---|---|
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.defineInputCell(Spreadsheet.Cell _cell,
java.lang.reflect.Method _methodToCall,
java.lang.Object... _args)
Like SpreadsheetBinder.Section.defineInputCell(org.formulacompiler.spreadsheet.Spreadsheet.Cell, CallFrame) ,
but constructs the CallFrame directly. |
void |
SpreadsheetBinder.Section.defineInputCell(Spreadsheet.Cell _cell,
java.lang.String _nameOfMethodToCall)
Like SpreadsheetBinder.Section.defineInputCell(org.formulacompiler.spreadsheet.Spreadsheet.Cell, CallFrame) ,
but constructs the CallFrame directly from a method looked up by name on
SpreadsheetBinder.Section.getInputClass() . |
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. |
void |
SpreadsheetBinder.Section.defineOutputCell(Spreadsheet.Cell _cell,
java.lang.reflect.Method _methodToImplement,
java.lang.Object... _args)
Like SpreadsheetBinder.Section.defineOutputCell(org.formulacompiler.spreadsheet.Spreadsheet.Cell, CallFrame) ,
but constructs the CallFrame directly. |
void |
SpreadsheetBinder.Section.defineOutputCell(Spreadsheet.Cell _cell,
java.lang.String _nameOfMethodToImplement)
Like SpreadsheetBinder.Section.defineOutputCell(org.formulacompiler.spreadsheet.Spreadsheet.Cell, CallFrame) ,
but constructs the CallFrame directly from a method looked up by name on
SpreadsheetBinder.Section.getOutputClass() . |
boolean |
SpreadsheetBinder.isInputCell(Spreadsheet.Cell _cell)
Checks if a given cell already is bound to an input method. |
boolean |
SpreadsheetBinder.isOutputCell(Spreadsheet.Cell _cell)
Checks if a given cell already is bound to an output method. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |