Ejemplo n.º 1
0
 @Override
 public synchronized void removeAdjustmentListener(final AdjustmentListener l) {
   if (l == null) {
     return;
   }
   adjustmentListener = AWTEventMulticaster.remove(adjustmentListener, l);
 }
Ejemplo n.º 2
0
 /**
  * Removes the specified action listener so that it no longer receives action events from this
  * text field. If l is null, no exception is thrown and no action is performed.
  *
  * @param l the action listener.
  * @see #addActionListener
  * @see #getActionListeners
  * @see java.awt.event.ActionListener
  * @since JDK1.1
  */
 public synchronized void removeActionListener(ActionListener l) {
   if (l == null) {
     return;
   }
   actionListener = AWTEventMulticaster.remove(actionListener, l);
 }
Ejemplo n.º 3
0
 public void removeContainerListener(ContainerListener listener) {
   cntrListener = AWTEventMulticaster.remove(cntrListener, listener);
 }
Ejemplo n.º 4
0
 public void removeTextListener(TextListener l) {
   textListener = AWTEventMulticaster.remove(textListener, l);
 }
Ejemplo n.º 5
0
 public void removeActionListener(ActionListener l) {
   selectionListener = AWTEventMulticaster.remove(selectionListener, l);
 }
Ejemplo n.º 6
0
 synchronized void removeWindowListener(WindowListener l) {
   windowListener = AWTEventMulticaster.remove(windowListener, l);
 }
Ejemplo n.º 7
0
 /**
  * Removes the specified <code>ItemListener</code> from the list of registers listeners for this
  * object.
  *
  * @param listener The listener to remove.
  */
 public synchronized void removeItemListener(ItemListener listener) {
   item_listeners = AWTEventMulticaster.remove(item_listeners, listener);
 }
Ejemplo n.º 8
0
 /**
  * Removes the specified <code>ActionListener</code> from the list of registers listeners for this
  * object.
  *
  * @param listener The listener to remove.
  */
 public synchronized void removeActionListener(ActionListener listener) {
   action_listeners = AWTEventMulticaster.remove(action_listeners, listener);
 }