Package | Description |
---|---|
org.apache.tapestry.link |
Components for creating links on the page that trigger application behavior
when clicked.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractLinkComponent
Base class for implementations of
ILinkComponent . |
class |
ActionLink
Deprecated.
To be removed in 4.1
|
class |
DirectLink
A component for creating a link using the direct service; used for actions that are not dependant
on dynamic page state.
|
class |
ExternalLink
A component for creating a link to
IExternalPage using the
ExternalService . |
class |
GenericLink
An implementation of
ILinkComponent
that allows
the exact HREF to be specified, usually used for client side
scripting. |
class |
PageLink
A component for creating a navigation link to another page, using the page service.
|
class |
ServiceLink
A component for creating a link for an arbitrary
engine service . |
Modifier and Type | Method and Description |
---|---|
protected void |
DefaultLinkRenderer.afterBodyRender(IMarkupWriter writer,
IRequestCycle cycle,
ILinkComponent link)
Invoked after the body of the link is rendered, but before
renderAdditionalAttributes(IMarkupWriter, IRequestCycle) is invoked
(but only if the link is not disabled). |
protected void |
DefaultLinkRenderer.beforeBodyRender(IMarkupWriter writer,
IRequestCycle cycle,
ILinkComponent link)
Invoked after the href attribute has been written but before the body of the link is rendered
(but only if the link is not disabled).
|
protected java.lang.String |
AbsoluteLinkRenderer.constructURL(ILinkComponent component,
IRequestCycle cycle) |
protected java.lang.String |
DefaultLinkRenderer.constructURL(ILinkComponent component,
IRequestCycle cycle)
Converts the EngineServiceLink into a URI or URL.
|
void |
DefaultLinkRenderer.renderLink(IMarkupWriter writer,
IRequestCycle cycle,
ILinkComponent linkComponent) |
void |
ILinkRenderer.renderLink(IMarkupWriter writer,
IRequestCycle cycle,
ILinkComponent linkComponent)
Renders the link, taking into account whether the link is
disabled . |