List of usage examples for com.jgoodies.common.collect ArrayListModel removeAll
@Override public boolean removeAll(Collection<?> c)
From source file:cz.vity.freerapid.gui.dialogs.DownloadHistoryDialog.java
public void removeSelected(int[] indexes) { final ArrayListModel<FileHistoryItem> items = getItems(); final java.util.List<FileHistoryItem> toRemoveList = getSelectionToList(indexes); manager.removeItems(toRemoveList);/*from w w w. java 2s.c o m*/ items.removeAll(toRemoveList); }