
 
![[Graphic: Figure from the text]](figs/actionl.gif) 
Objects that implement the ActionListener interface can receive ActionEvent objects. Listeners must first register themselves with objects that produce events. When events occur, they are then automatically propagated to all registered listeners.
public abstract interface java.awt.event.ActionListener
   extends java.util.EventListener {
  // Interface Methods
  public abstract void actionPerformed (ActionEvent e);
}
The action event that occurred.
Notifies the ActionListener that an event occurred.
ActionEvent, AWTEventMulticaster, EventListener
| This HTML Help has been published using the chm2web software. |