org.apache.tapestry5.services
Interface LinkCreationListener


Deprecated. Use LinkCreationListener2 instead

public interface LinkCreationListener

Listener interface for objects that need to be notified about newly created links.

See Also:
LinkCreationHub

Method Summary
 void createdComponentEventLink(Link link)
          Deprecated. Invoked when an action link (a link that asks a component to perform an action) is created.
 void createdPageRenderLink(Link link)
          Deprecated. Invoked when a page link (a link that renders a page) is created.
 

Method Detail

createdPageRenderLink

void createdPageRenderLink(Link link)
Deprecated. 
Invoked when a page link (a link that renders a page) is created. The listener may decide to encode additional query parameters into the link (via Link.addParameter(String, String)).

Parameters:
link - the newly created link

createdComponentEventLink

void createdComponentEventLink(Link link)
Deprecated. 
Invoked when an action link (a link that asks a component to perform an action) is created. The listener may decide to encode additional query parameters into the link (via Link.addParameter(String, String)).

Parameters:
link - the newly created link


Copyright © 2003-2012 The Apache Software Foundation.