List of usage examples for javax.swing JList removeListSelectionListener
public void removeListSelectionListener(ListSelectionListener listener)
From source file:edu.ku.brc.ui.UIHelper.java
/** * Removes the ListSelection Listeners.//from ww w . jav a2 s . co m * @param comp the comp */ public static void removeListSelectionListeners(final JList comp) { if (comp != null) { for (ListSelectionListener l : comp.getListSelectionListeners()) { comp.removeListSelectionListener(l); } } }