com.primix.tapestry
Interface IActionListener
- All Known Implementing Classes:
- Home
- public interface IActionListener
Defines a listener to an IAction
component, which is way to
get behavior when the component's URL is triggered (or the form
containing the component is submitted). Certain form elements (Hidden
)
also make use of this interface.
- Version:
- $Id: IActionListener.java,v 1.4 2001/05/30 16:13:20 hship Exp $
- Author:
- Howard Ship
actionTriggered
public void actionTriggered(IComponent component,
IRequestCycle cycle)
throws RequestCycleException
- Method invoked by the component (an
Action
or Form
, when its URL is triggered.
- Parameters:
action
- The component which was "triggered".cycle
- The request cycle in which the component was triggered.