Make sure this is a legit column, and if not, expand the table.
(int col)
| 4249 | |
| 4250 | /** Make sure this is a legit column, and if not, expand the table. */ |
| 4251 | protected void ensureColumn(int col) { |
| 4252 | if (col >= columns.length) { |
| 4253 | setColumnCount(col + 1); |
| 4254 | } |
| 4255 | } |
| 4256 | |
| 4257 | |
| 4258 | /** Make sure this is a legit row, and if not, expand the table. */ |
no test coverage detected