Home » openjdk-7 » java » awt » event » [javadoc | source]
java.awt.event
public interface: ActionListener [javadoc | source]

All Implemented Interfaces:
    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.
Method from java.awt.event.ActionListener Summary:
actionPerformed
Method from java.awt.event.ActionListener Detail:
 public  void actionPerformed(ActionEvent e)
    Invoked when an action occurs.