java.awt.event
Interface  ActionListener
- All Known Implementing Classes: 
 - Applet1, AWTEventMulticaster
 
- public abstract interface ActionListener
- extends EventListener
  
The listener interface for receiving action events. 
 The class that is interested in processing an action event
 implements this interface, and the object created with that
 class is registered with a component, using the component's
 addActionListener method. When the action event
 occurs, that object's actionPerformed method is
 invoked.
- See Also: 
 ActionEvent, 
Tutorial: Java 1.1 Event Model, 
Reference: The Java Class Libraries (update file)
 
actionPerformed
public void actionPerformed(ActionEvent e)
- Invoked when an action occurs.