selectionModel.setSelectionInterval(selectionIndex, selectionIndex);
} else if (modelSize > 0) {
// Select the last element.
selectionModel.setSelectionInterval(modelSize - 1, modelSize - 1);
} else {
selectionModel.clearSelection();
}
// If there are no patterns, display the "No patterns" message.
if (modelSize == 0) {
getListModel().addElement(NO_PATTERNS_ELEMENT);