Throw an error if this entry is out of bounds.
(int row, int column)
| 4189 | |
| 4190 | /** Throw an error if this entry is out of bounds. */ |
| 4191 | protected void checkBounds(int row, int column) { |
| 4192 | checkRow(row); |
| 4193 | checkColumn(column); |
| 4194 | } |
| 4195 | |
| 4196 | |
| 4197 | // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . |