(int column, int row)
| 284 | } |
| 285 | |
| 286 | String getCell(int column, int row) { |
| 287 | if (column<0||column>=iColCount||row<0||row>=iRowCount) |
| 288 | return null; |
| 289 | return new String(getChars(column, row)); |
| 290 | } |
| 291 | |
| 292 | synchronized char[] getChars(int column, int row) { |
| 293 | if (vData==null) |