()
| 153 | // select the moved/already existing documents |
| 154 | SwingUtilities.invokeLater(new Runnable() { |
| 155 | @Override |
| 156 | public void run() { |
| 157 | docTable.clearSelection(); |
| 158 | for (String documentName : documentsNames) { |
| 159 | for (int row = 0; row < docTable.getRowCount(); row++) { |
| 160 | if (docTable.getValueAt( |
| 161 | row, docTable.convertColumnIndexToView(1)) |
| 162 | .equals(documentName)) { |
| 163 | docTable.addRowSelectionInterval(row, row); |
| 164 | } |
| 165 | } |
| 166 | } |
| 167 | } |
| 168 | }); |
| 169 | changeMessage(); |
| 170 | return true; |
nothing calls this directly
no test coverage detected