public interface ActionListener extends FacesListener
A listener interface for receiving ActionEvent
s. 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()
.
Modifier and Type | Method and Description |
---|---|
void |
processAction(ActionEvent event)
Invoked when the action described by the specified
ActionEvent occurs. |
void processAction(ActionEvent event) throws AbortProcessingException
Invoked when the action described by the specified
ActionEvent
occurs.
event
- The ActionEvent
that has occurredAbortProcessingException
- Signal the JavaServer Faces
implementation that no further processing on the current event
should be performedCopyright © 2012 JBoss by Red Hat. All Rights Reserved.