Java Code Examples for java.awt.AWTEventMulticaster#remove()

The following examples show how to use java.awt.AWTEventMulticaster#remove() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PMGenericHotArea.java    From megamek with GNU General Public License v2.0 4 votes vote down vote up
public synchronized void removeActionListener(ActionListener l) {
    actionListener = AWTEventMulticaster.remove(actionListener, l);
}
 
Example 2
Source File: PMSimplePolygonArea.java    From megamek with GNU General Public License v2.0 4 votes vote down vote up
public synchronized void removeActionListener(ActionListener l) {
    actionListener = AWTEventMulticaster.remove(actionListener, l);
}
 
Example 3
Source File: PMPicArea.java    From megamek with GNU General Public License v2.0 4 votes vote down vote up
public synchronized void removeActionListener(ActionListener l) {
    actionListener = AWTEventMulticaster.remove(actionListener, l);
}
 
Example 4
Source File: AbstractFormattedDisk.java    From DiskBrowser with GNU General Public License v3.0 4 votes vote down vote up
public void removeActionListener (ActionListener actionListener)
// ---------------------------------------------------------------------------------//
{
  actionListenerList = AWTEventMulticaster.remove (actionListenerList, actionListener);
}
 
Example 5
Source File: AppleDisk.java    From DiskBrowser with GNU General Public License v3.0 4 votes vote down vote up
@Override
public void removeActionListener (ActionListener actionListener)
// ---------------------------------------------------------------------------------//
{
  actionListenerList = AWTEventMulticaster.remove (actionListenerList, actionListener);
}