package cnp.ew.grid;

import java.awt.*;

class CpFormulaCell extends CpFormulaExpression
{
    public Point cell;

    public CpFormulaCell(int c, int r)
    {
        cell = new Point(c, r);
    }

    public Object value(CpGridModel grid)
    {
        return grid.getCell(cell).getObject();
    }
}

