java.awt.event
Interface ActionListener
- All Known Subinterfaces:
- Action
- All Known Implementing Classes:
- AWTEventMulticaster, DropTarget.DropTargetAutoScroller, ToolTipManager.insideTimerAction, ToolTipManager.outsideTimerAction, ToolTipManager.stillInsideTimerAction, DefaultCellEditor.EditorDelegate, JComboBox, FormView, DefaultTreeCellEditor, BasicOptionPaneUI.ButtonActionListener, BasicSliderUI.ScrollListener, BasicSplitPaneUI.KeyboardUpLeftHandler, BasicSplitPaneUI.KeyboardDownRightHandler, BasicSplitPaneUI.KeyboardHomeHandler, BasicSplitPaneUI.KeyboardEndHandler, BasicSplitPaneUI.KeyboardResizeToggleHandler, BasicTreeUI.ComponentHandler, BasicScrollBarUI.ScrollListener
- public 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.
Submit a bug or feature
Java, Java 2D, and JDBC are a trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1999 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.