Esempio n. 1
0
        public void mark(int col, int row)
        {
            NewCell cell = findCell(col, row);

            if (cell != null)
            {
                cell.mark();
            }
        }
Esempio n. 2
0
 public void mark(int col, int row)
 {
     entry.mark(col, row);
 }