()
| 585 | System.arraycopy(rowsCorpus, 0, selectedRowsCorpus, 0, rowsCorpus.length); |
| 586 | SwingUtilities.invokeLater(new Runnable(){ |
| 587 | @Override |
| 588 | public void run(){ |
| 589 | docTable.clearSelection(); |
| 590 | for(int i = 0; i < selectedRowsCorpus.length; i++){ |
| 591 | int rowTable = docTable.rowModelToView(selectedRowsCorpus[i]); |
| 592 | docTable.getSelectionModel().addSelectionInterval(rowTable, |
| 593 | rowTable); |
| 594 | } |
| 595 | } |
| 596 | }); |
| 597 | } |
| 598 | } |
nothing calls this directly
no test coverage detected