org.apache.tapestry
Interface IActionListener
- All Known Implementing Classes:
- ListenerBinding
- 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.5 2004/02/19 17:37:36 hlship Exp $
- Author:
- Howard Lewis Ship
actionTriggered
public void actionTriggered(IComponent component,
IRequestCycle cycle)
- Method invoked by the component (an
ActionLink
or
Form
, when its URL is triggered.
- Parameters:
component
- The component which was "triggered".cycle
- The request cycle in which the component was triggered.