()
| 535 | System.arraycopy(rowsCorpus, 0, selectedRowsCorpus, 0, rowsCorpus.length); |
| 536 | SwingUtilities.invokeLater(new Runnable(){ |
| 537 | @Override |
| 538 | public void run(){ |
| 539 | docTable.clearSelection(); |
| 540 | for(int i = 0; i < selectedRowsCorpus.length; i++){ |
| 541 | int rowTable = docTable.rowModelToView(selectedRowsCorpus[i]); |
| 542 | docTable.getSelectionModel().addSelectionInterval(rowTable, |
| 543 | rowTable); |
| 544 | } |
| 545 | } |
| 546 | }); |
| 547 | } |
| 548 | } |
nothing calls this directly
no test coverage detected