Home » Mojarra-2.0.1 » javax » faces » event » [javadoc | source]
javax.faces.event
public interface: ActionListener [javadoc | source]

All Implemented Interfaces:
    FacesListener

All Known Implementing Classes:
    MethodExpressionActionListener

A listener interface for receiving ActionEvent s. An implementation of this interface must be thread-safe. A class that is interested in receiving such events implements this interface, and then registers itself with the source UIComponent of interest, by calling addActionListener().

Method from javax.faces.event.ActionListener Summary:
processAction
Method from javax.faces.event.ActionListener Detail:
 public  void processAction(ActionEvent event) throws AbortProcessingException

    Invoked when the action described by the specified ActionEvent occurs.