Uses of Class
csheets.core.formula.compiler.FormulaCompilationException

Packages that use FormulaCompilationException
csheets.core Provides the core classes for the application's data model, i.e. workbooks, spreadsheets, cells, addresses and values. 
csheets.core.formula.compiler Provides classes for compiling formulas from strings. 
csheets.core.formula.lang Provides the operators, functions and references supported by the formula language. 
csheets.ext Provides an extension mechanism for the application. 
 

Uses of FormulaCompilationException in csheets.core
 

Methods in csheets.core that throw FormulaCompilationException
 void CellImpl.setContent(String content)
           
 void Cell.setContent(String content)
          Sets the content of the cell and if it starts with the assignment operator attempts to parse a formula from it.
 

Constructors in csheets.core that throw FormulaCompilationException
CellImpl(Spreadsheet spreadsheet, Address address, String content)
          Creates a new cell at the given address in the given spreadsheet, initialized with the given content (not intended to be used directly).
 

Uses of FormulaCompilationException in csheets.core.formula.compiler
 

Subclasses of FormulaCompilationException in csheets.core.formula.compiler
 class IllegalFunctionCallException
          An exception that is thrown if an function call with illegal argument count or argument types is encountered during parsing.
 

Methods in csheets.core.formula.compiler that throw FormulaCompilationException
 Formula FormulaCompiler.compile(Cell cell, String source)
          Compiles a formula for the given cell from the given string.
 Expression ExpressionCompiler.compile(Cell cell, String source)
          Compiles an expression from the given string.
 Expression ExcelExpressionCompiler.compile(Cell cell, String source)
           
protected  Expression ExcelExpressionCompiler.convert(Cell cell, antlr.collections.AST node)
          Converts the given ANTLR AST to an expression.
 

Uses of FormulaCompilationException in csheets.core.formula.lang
 

Subclasses of FormulaCompilationException in csheets.core.formula.lang
 class UnknownElementException
          An exception that is thrown if an unknown language element is requested.
 

Uses of FormulaCompilationException in csheets.ext
 

Methods in csheets.ext that throw FormulaCompilationException
 void CellExtension.setContent(String content)