(String string)
| 276 | } |
| 277 | |
| 278 | private int getColumnIndex(String string) |
| 279 | { |
| 280 | int columnNumber = 0; |
| 281 | for (TableColumn column : columns) |
| 282 | { |
| 283 | if (column.getName().equals(string)) |
| 284 | { |
| 285 | return columnNumber; |
| 286 | } |
| 287 | columnNumber++; |
| 288 | } |
| 289 | return -1; |
| 290 | } |
| 291 | |
| 292 | /** |
| 293 | * Returns the value in this DataTable for the row with the lookup value valid (via |