Java Code Examples for javax.swing.JButton#removeActionListener()

The following examples show how to use javax.swing.JButton#removeActionListener() . 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: Wizard.java    From tn5250j with GNU General Public License v2.0 6 votes vote down vote up
public void componentRemoved(ContainerEvent e) {
   if (e.getChild() instanceof WizardPage) {
      WizardPage wp = (WizardPage)e.getChild();
      JButton b;
      b = wp.getNextButton();
      if (b != null) {
         b.removeActionListener(nextListener);
      }
      b = wp.getPreviousButton();
      if (b != null) {
         b.removeActionListener(previousListener);
      }
      b = wp.getFinishButton();
      if (b != null) {
         b.removeActionListener(finishListener);
      }
      b = wp.getCancelButton();
      if (b != null) {
         b.removeActionListener(cancelListener);
      }
      b = wp.getHelpButton();
      if (b != null) {
         b.removeActionListener(helpListener);
      }
   }
}
 
Example 2
Source File: SkinSpecPanel.java    From megamek with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Remove thsi SkinSpecEditor as a listener from all components.
 */
private void removeListeners() {
    for (JButton colorButton : colorButtons) {
        colorButton.removeActionListener(this);
    }
    addColor.removeActionListener(this);
    removeColor.removeActionListener(this);
}