Uses of Class
csheets.core.formula.Formula

Packages that use Formula
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.util Provides utilities for performing operations on formulas. 
csheets.ext Provides an extension mechanism for the application. 
csheets.ext.test Provides support for test cases and test case parameters. 
 

Uses of Formula in csheets.core
 

Methods in csheets.core that return Formula
 Formula CellImpl.getFormula()
           
 Formula Cell.getFormula()
          Returns an expression representing the cell's formula.
 

Uses of Formula in csheets.core.formula.compiler
 

Methods in csheets.core.formula.compiler that return Formula
 Formula FormulaCompiler.compile(Cell cell, String source)
          Compiles a formula for the given cell from the given string.
 

Uses of Formula in csheets.core.formula.util
 

Methods in csheets.core.formula.util that return Formula
 Formula CircularReferenceException.getFormula()
          Returns the formula in which the circularity exists.
 

Methods in csheets.core.formula.util with parameters of type Formula
 void CircularReferenceFinder.check(Formula formula)
          Checks if the given formula has any circular references.
 

Constructors in csheets.core.formula.util with parameters of type Formula
CircularReferenceException(Formula formula)
          Creates a new circular reference exception.
 

Uses of Formula in csheets.ext
 

Methods in csheets.ext that return Formula
 Formula CellExtension.getFormula()
           
 

Uses of Formula in csheets.ext.test
 

Subclasses of Formula in csheets.ext.test
 class TestCase
          Contains the information for a single test case, i.e. a single test case parameter for each of the precedents.