Uses of Interface
org.formulacompiler.spreadsheet.SpreadsheetBuilder

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

Uses of SpreadsheetBuilder in org.formulacompiler.spreadsheet
 

Methods in org.formulacompiler.spreadsheet that return SpreadsheetBuilder
 SpreadsheetBuilder SpreadsheetBuilder.nameCell(java.lang.String _name)
          Defines a name for the cell created last.
 SpreadsheetBuilder SpreadsheetBuilder.nameRange(SpreadsheetBuilder.RangeRef _range, java.lang.String _name)
          Defines a name for the given range.
 SpreadsheetBuilder SpreadsheetBuilder.newCell()
          Creates a new, blank cell in the current row.
 SpreadsheetBuilder SpreadsheetBuilder.newCell(SpreadsheetBuilder.Constant _const)
          Creates a new cell in the current row with a constant value.
 SpreadsheetBuilder SpreadsheetBuilder.newCell(SpreadsheetBuilder.ExprNode _expr)
          Creates a new, calculated cell in the current row, with the given expression tree defining its formula.
 SpreadsheetBuilder SpreadsheetBuilder.Factory.newInstance()
          Factory method.
 SpreadsheetBuilder SpreadsheetBuilder.newRow()
          Terminates the current row and starts a new, empty one in the current sheet.
 SpreadsheetBuilder SpreadsheetBuilder.newSheet()
          Terminates the current sheet and starts a new one, with a new, empty first row.
static SpreadsheetBuilder SpreadsheetCompiler.newSpreadsheetBuilder()
          Returns a new instance of a spreadsheet builder, which can be used to build a spreadsheet representation in memory from scratch.
 SpreadsheetBuilder SpreadsheetBuilder.styleCell(java.lang.String _styleName)
          Remembers a style name for this cell for use by the SpreadsheetSaver.
 SpreadsheetBuilder SpreadsheetBuilder.styleRow(java.lang.String _styleName)
          Remembers a style name for this row for use by the SpreadsheetSaver.