Index: A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z
The ActionListenerInterface class is the abstract base class for ActionListener objects. It is the listener interface for receiving action events.
This is an abstract class and cannot be directly instantiated.
#include <toolkit/lisact.h>
public: | ||
void | ActionPerformed(ActionEvent& event) ; | // pure virtual |
protected: |
public: | ||
---|---|---|
protected: |
Back to the top of ActionListenerInterface
Back to the top of ActionListenerInterface
Back to the top of ActionListenerInterface
An application will be notified of action events if this method is overridden. An action event is generated by user input such as pressing a button.
Prototype:
virtual void ActionPerformed(ActionEvent& event) = 0;
Back to the top of ActionListenerInterface