Make sure this is a legit row, and if not, expand the table.
(int row)
| 4158 | |
| 4159 | /** Make sure this is a legit row, and if not, expand the table. */ |
| 4160 | protected void ensureRow(int row) { |
| 4161 | if (row >= rowCount) { |
| 4162 | setRowCount(row + 1); |
| 4163 | } |
| 4164 | } |
| 4165 | |
| 4166 | |
| 4167 | /** Make sure this is a legit row and column. If not, expand the table. */ |
no test coverage detected