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 243791 2004-02-19 17:38:13Z hlship $
Author:
Howard Lewis Ship

Method Summary
 void actionTriggered(IComponent component, IRequestCycle cycle)
          Method invoked by the component (an ActionLink or Form, when its URL is triggered.
 

Method Detail

actionTriggered

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.