11 lines
205 B
Java
11 lines
205 B
Java
package xl.model;
|
|
|
|
import xl.expr.Environment;
|
|
|
|
/**
|
|
* Interface for a cell in the spreadsheet.
|
|
*/
|
|
public interface Cell {
|
|
public double cellValue(Environment e);
|
|
public String displayValue();
|
|
}
|