package sudoku; public class ImmutableCell extends Cell { public ImmutableCell(int symbolIndex) { super(symbolIndex); } }