java.awt.event
Interface ActionListener
-
- All Superinterfaces:
- java.util.EventListener
- All Known Implementing Classes:
- AWTEventMulticaster, List.AccessibleAWTList
public interface ActionListener extends java.util.EventListenerThe 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'saddActionListener
method. When the action event occurs, that object'sactionPerformed
method is invoked.- Since:
- 1.1
- See Also:
ActionEvent
, Tutorial: Java 1.1 Event Model