Throw an error if this entry is out of bounds.
(int row, int column)
| 4288 | |
| 4289 | /** Throw an error if this entry is out of bounds. */ |
| 4290 | protected void checkBounds(int row, int column) { |
| 4291 | checkRow(row); |
| 4292 | checkColumn(column); |
| 4293 | } |
| 4294 | |
| 4295 | |
| 4296 | // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . |