(int row, int column)
| 717 | } |
| 718 | |
| 719 | @Override |
| 720 | public Object getValueAt(int row, int column){ |
| 721 | try{ |
| 722 | return sourceModel.getValueAt(targetToSource(row), column); |
| 723 | }catch(IndexOutOfBoundsException iobe){ |
| 724 | //this can occur because of multithreaded access -> some threads empties |
| 725 | //the data while some other thread tries to update the display. |
| 726 | //this error is safe to ignore as the GUI will get updated by another |
| 727 | //event once the change to the data has been effected |
| 728 | return null; |
| 729 | } |
| 730 | } |
| 731 | |
| 732 | /** |
| 733 | * Sorts the table using the values in the specified column and sorting order. |
nothing calls this directly
no test coverage detected