Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

Copyright © 2006 Sun Microsystems, Inc. All rights reserved.

JSR 216 (Maintenance Release)

java.awt.event
Interface ActionListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
AWTEventMulticaster

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.

Since:
1.1
See Also:
ActionEvent, Tutorial: Java 1.1 Event Model, Reference: The Java Class Libraries (update file)

Method Summary
 void actionPerformed(ActionEvent e)
          Invoked when an action occurs.
 

Method Detail

actionPerformed

public void actionPerformed(ActionEvent e)
Invoked when an action occurs.


JSR 216 (Maintenance Release)

Copyright © 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

For more information, please consult the JSR 216 specification.