Uses of Interface
org.apache.tapestry.engine.ILink

Packages that use ILink
org.apache.tapestry.asset Implementations of IAsset, as well as the org.apache.tapestry.asset.AssetExternalizer, used to handle private assets. 
org.apache.tapestry.components Basic, fundamental components used to construct more complex components, or pages. 
org.apache.tapestry.engine Implementations of the IEngine interface, including the standard implementation: BaseEngine
org.apache.tapestry.form Components for implementing basic HTML Forms. 
org.apache.tapestry.link Components for creating links on the page that trigger application behavior when clicked. 
org.apache.tapestry.services Interfaces for Tapestry-related HiveMind services. 
org.apache.tapestry.services.impl   
 

Uses of ILink in org.apache.tapestry.asset
 

Methods in org.apache.tapestry.asset that return ILink
 ILink AssetService.getLink(boolean post, java.lang.Object parameter)
          Builds a ILinkfor a PrivateAsset.
 

Uses of ILink in org.apache.tapestry.components
 

Methods in org.apache.tapestry.components that return ILink
 ILink ILinkComponent.getLink(IRequestCycle cycle)
          Invoked by the ILinkRenderer (if the link is not disabled) to provide a EngineServiceLink that the renderer can convert into a URL.
 

Uses of ILink in org.apache.tapestry.engine
 

Classes in org.apache.tapestry.engine that implement ILink
 class EngineServiceLink
          A EngineServiceLink represents a possible action within the client web browser; either clicking a link or submitting a form, which is constructed primarily from the servlet path, with some additional query parameters.
 

Methods in org.apache.tapestry.engine that return ILink
 ILink ActionService.getLink(boolean post, java.lang.Object parameter)
          Deprecated.  
 ILink DirectService.getLink(boolean post, java.lang.Object parameter)
           
 ILink ExternalService.getLink(boolean post, java.lang.Object parameter)
          Builds a URL for a service.
 ILink HomeService.getLink(boolean post, java.lang.Object parameter)
           
 ILink IEngineService.getLink(boolean post, java.lang.Object parameter)
          Builds a URL for a service.
 ILink PageService.getLink(boolean post, java.lang.Object parameter)
           
 ILink ResetService.getLink(boolean post, java.lang.Object parameter)
           
 ILink RestartService.getLink(boolean post, java.lang.Object parameter)
           
 

Uses of ILink in org.apache.tapestry.form
 

Methods in org.apache.tapestry.form that return ILink
protected  ILink Form.getLink(IRequestCycle cycle, java.lang.String actionId)
          Builds the EngineServiceLink for the form, using either the direct or action service.
 

Methods in org.apache.tapestry.form with parameters of type ILink
 void FormSupport.render(java.lang.String method, IRender informalParametersRenderer, ILink link, java.lang.String scheme)
          Deprecated. To be removed in 4.1, see new render method that adds the Port parameter.
 void FormSupportImpl.render(java.lang.String method, IRender informalParametersRenderer, ILink link, java.lang.String scheme)
          Deprecated. Please use second render method.
 void FormSupport.render(java.lang.String method, IRender informalParametersRenderer, ILink link, java.lang.String scheme, java.lang.Integer port)
          Invoked when the form is rendering.
 void FormSupportImpl.render(java.lang.String method, IRender informalParametersRenderer, ILink link, java.lang.String scheme, java.lang.Integer port)
           
 

Uses of ILink in org.apache.tapestry.link
 

Classes in org.apache.tapestry.link that implement ILink
 class StaticLink
          Used by GenericLink to represent an external, static URL.
 

Methods in org.apache.tapestry.link that return ILink
 ILink AbstractLinkComponent.getLink(IRequestCycle cycle)
           
 ILink ActionLink.getLink(IRequestCycle cycle)
          Deprecated.  
 ILink DirectLink.getLink(IRequestCycle cycle)
           
 ILink ExternalLink.getLink(IRequestCycle cycle)
           
 ILink GenericLink.getLink(IRequestCycle cycle)
           
 ILink PageLink.getLink(IRequestCycle cycle)
           
 ILink ServiceLink.getLink(IRequestCycle cycle)
           
protected  ILink AbstractLinkComponent.getLink(IRequestCycle cycle, java.lang.String serviceName, java.lang.Object parameter)
          Deprecated. To be removed in 4.1; links may now have the necessary engine service injected.
 

Uses of ILink in org.apache.tapestry.services
 

Methods in org.apache.tapestry.services that return ILink
 ILink LinkFactory.constructLink(IEngineService service, boolean post, java.util.Map parameters, boolean stateful)
          Constructs an ILink.
 

Uses of ILink in org.apache.tapestry.services.impl
 

Methods in org.apache.tapestry.services.impl that return ILink
 ILink LinkFactoryImpl.constructLink(IEngineService service, boolean post, java.util.Map parameters, boolean stateful)
           
 ILink EngineServiceInnerProxy.getLink(boolean post, java.lang.Object parameter)
           
 ILink EngineServiceOuterProxy.getLink(boolean post, java.lang.Object parameter)