List of usage examples for java.awt AWTEventMulticaster remove
@SuppressWarnings("overloads") public static MouseWheelListener remove(MouseWheelListener l, MouseWheelListener oldl)
From source file:ItemEventComponent.java
public void removeItemListener(ItemListener l) { itemListener = AWTEventMulticaster.remove(itemListener, l); }
From source file:Main.java
public void removeActionListener(ActionListener actionListener) { actionListenerList = AWTEventMulticaster.remove(actionListenerList, actionListener); }