()
| 276 | } |
| 277 | |
| 278 | public void updateDisplay() { |
| 279 | iY=iRowHeight*(iRowCount+1); |
| 280 | adjustVScroll(); |
| 281 | if (iColCount>1 && iRowCount<=10 && !columnsManuallyAdjusted) |
| 282 | iColWidth[0] = 0; // forces column width calculation |
| 283 | tc.repaint(); |
| 284 | } |
| 285 | |
| 286 | String getCell(int column, int row) { |
| 287 | if (column<0||column>=iColCount||row<0||row>=iRowCount) |
no test coverage detected