Package org.apache.tapestry5.services
Interface LinkCreationListener
public interface LinkCreationListener
Deprecated.
Listener interface for objects that need to be notified about newly created links.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
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 Details
-
createdPageRenderLink
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 (viaLink.addParameter(String, String)
).- Parameters:
link
- the newly created link
-
createdComponentEventLink
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 (viaLink.addParameter(String, String)
).- Parameters:
link
- the newly created link
-
LinkCreationListener2
instead