Make sure this is a legit column, and if not, expand the table.
(int col)
| 4150 | |
| 4151 | /** Make sure this is a legit column, and if not, expand the table. */ |
| 4152 | protected void ensureColumn(int col) { |
| 4153 | if (col >= columns.length) { |
| 4154 | setColumnCount(col + 1); |
| 4155 | } |
| 4156 | } |
| 4157 | |
| 4158 | |
| 4159 | /** Make sure this is a legit row, and if not, expand the table. */ |
no test coverage detected