Portlet API 2

org.apache.jetspeed.portlet.event
Interface ActionListener

All Known Implementing Classes:
ActionAdapter

public interface ActionListener

The ActionListener interface must be implemented, if an object wishes to receive action events. The implemented listener then has to be registered with the respective event source.

See Also:
ActionEvent, ActionAdapter

Method Summary
 void actionPerformed(ActionEvent event)
          Notifies this listener that the action which the listener is watching for has been performed.
 

Method Detail

actionPerformed

public void actionPerformed(ActionEvent event)
Notifies this listener that the action which the listener is watching for has been performed.
Parameters:
event - the action event

Portlet API 2