private void setupListAnchor() {
ListSelectionModel selectionModel = getViewRepresentation().getSelectionModel();
int selectionAnchor = selectionModel.getLeadSelectionIndex();
selectionModel.clearSelection();
if (selectionAnchor >= 0 && selectionAnchor < getModel().getSize()) {
selectionModel.setAnchorSelectionIndex(selectionAnchor);
selectionModel.setLeadSelectionIndex(selectionAnchor);
}
}