package kernel; import java.util.List; public interface Formula { String getDevelopedFormula(); String toString(); double eval(); boolean createCycle(Cell cell); List getUtilisedCells(); }