addRowSelection method

void addRowSelection(
  1. int row
)

Implementation

void addRowSelection(int row) {
  rowSelection.add(row);
  for (int j = 0; j < maxColumns; j++) {
    cellSelection.add(Index(row, j));
    columnSelection.add(j);
  }
}