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(); public String formula(); }