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

Packages that use IEngineService
org.apache.tapestry Tapestry is a comprehensive web application framework, written in Java. 
org.apache.tapestry.asset Implementations of IAsset, as well as the ExternalResource, used to handle private assets. 
org.apache.tapestry.contrib.ajax

Ajax related contributions, things like Timeout and XTile allow a lot of common ajax functionality to be easily used. 

org.apache.tapestry.contrib.inspector Implementation of the Tapestry Inspector, a specialized page used to dynamically introspect the construction of an application while it runs. 
org.apache.tapestry.contrib.services.impl   
org.apache.tapestry.dojo.form Form related components that are wrapped by dojo widgets. 
org.apache.tapestry.dojo.html Html related components that are wrapped by dojo widgets. 
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.html Components specific to the creation of HTML pages, including sophisticated DHTML JavaScript effects. 
org.apache.tapestry.link Components for creating links on the page that trigger application behavior when clicked. 
org.apache.tapestry.portlet Core portlet services. 
org.apache.tapestry.scriptaculous   
org.apache.tapestry.services Interfaces for Tapestry-related HiveMind services. 
org.apache.tapestry.services.impl Service implementations. 
 

Uses of IEngineService in org.apache.tapestry
 

Methods in org.apache.tapestry that return IEngineService
 IEngineService IRequestCycle.getService()
          Returns the service which initiated this request cycle.
 

Uses of IEngineService in org.apache.tapestry.asset
 

Classes in org.apache.tapestry.asset that implement IEngineService
 class AssetService
          A service for building URLs to and accessing IAssets.
 

Methods in org.apache.tapestry.asset with parameters of type IEngineService
 void ClasspathAssetFactory.setAssetService(IEngineService assetService)
           
 

Constructors in org.apache.tapestry.asset with parameters of type IEngineService
PrivateAsset(org.apache.hivemind.Resource resourceLocation, IEngineService assetService, org.apache.hivemind.Location location)
           
 

Uses of IEngineService in org.apache.tapestry.contrib.ajax
 

Classes in org.apache.tapestry.contrib.ajax that implement IEngineService
 class XTileService
           
 

Methods in org.apache.tapestry.contrib.ajax that return IEngineService
abstract  IEngineService XTile.getService()
           
 

Uses of IEngineService in org.apache.tapestry.contrib.inspector
 

Methods in org.apache.tapestry.contrib.inspector that return IEngineService
abstract  IEngineService ShowTemplate.getDirectService()
           
 

Uses of IEngineService in org.apache.tapestry.contrib.services.impl
 

Classes in org.apache.tapestry.contrib.services.impl that implement IEngineService
 class RoundedCornerService
          Provides generated rounded corner images in a similar use / fashion as outlined here: google's own cornershop.
 

Uses of IEngineService in org.apache.tapestry.dojo.form
 

Methods in org.apache.tapestry.dojo.form that return IEngineService
abstract  IEngineService Autocompleter.getDirectService()
          Injected.
 

Uses of IEngineService in org.apache.tapestry.dojo.html
 

Methods in org.apache.tapestry.dojo.html that return IEngineService
abstract  IEngineService InlineEditBox.getEngine()
          Injected.
 

Uses of IEngineService in org.apache.tapestry.engine
 

Classes in org.apache.tapestry.engine that implement IEngineService
 class DirectEventService
          Implementation of the direct event service, which encodes the page and component id in the service context, and passes application-defined parameters as well.
 class DirectService
          Implementation of the direct service, which encodes the page and component id in the service context, and passes application-defined parameters as well.
 class ExternalService
          The external service enables external applications to reference Tapestry pages via a URL.
 class HomeService
          An implementation of the home service that renders the Home page.
 class PageService
          Basic server for creating a link to another page in the application.
 class ResetService
          ServiceLink used to discard all cached data (templates, specifications, et cetera).
 class RestartService
          Restarts the Tapestry application.
 

Methods in org.apache.tapestry.engine that return IEngineService
 IEngineService RequestCycle.getService()
           
 IEngineService AbstractEngine.getService(String name)
          Returns a service with the given name.
 

Methods in org.apache.tapestry.engine with parameters of type IEngineService
static String EngineMessages.serviceNoParameter(IEngineService service)
           
 

Uses of IEngineService in org.apache.tapestry.form
 

Methods in org.apache.tapestry.form that return IEngineService
abstract  IEngineService Form.getDirectService()
          Injected.
 

Uses of IEngineService in org.apache.tapestry.html
 

Methods in org.apache.tapestry.html that return IEngineService
abstract  IEngineService Shell.getPageService()
           
abstract  IEngineService Frame.getPageService()
          Injected engine service.
 

Uses of IEngineService in org.apache.tapestry.link
 

Methods in org.apache.tapestry.link that return IEngineService
abstract  IEngineService DirectLink.getEngine()
          Injected.
abstract  IEngineService ExternalLink.getExternalService()
           
abstract  IEngineService PageLink.getPageService()
           
 

Uses of IEngineService in org.apache.tapestry.portlet
 

Classes in org.apache.tapestry.portlet that implement IEngineService
 class ExceptionService
           
 class PortletHomeService
          Replacement for the standard home service, used by Portlets.
 class RenderService
          Responsible for rendering out a page; a Portlet render URL is built during action processing that stores the active page; this is the page that will be rendered.
 

Methods in org.apache.tapestry.portlet with parameters of type IEngineService
 ILink PortletLinkFactoryImpl.constructLink(IEngineService service, boolean post, Map parameters, boolean stateful)
           
 ILink PortletAssetLinkFactoryImpl.constructLink(IEngineService service, boolean post, Map parameters, boolean stateful)
           
 

Uses of IEngineService in org.apache.tapestry.scriptaculous
 

Methods in org.apache.tapestry.scriptaculous that return IEngineService
abstract  IEngineService Suggest.getEngineService()
          Injected.
 

Uses of IEngineService in org.apache.tapestry.services
 

Methods in org.apache.tapestry.services that return IEngineService
 IEngineService ServiceMap.getService(String name)
          Returns the named service.
 

Methods in org.apache.tapestry.services with parameters of type IEngineService
 ILink LinkFactory.constructLink(IEngineService service, boolean post, Map parameters, boolean stateful)
          Constructs an ILink.
 

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

Classes in org.apache.tapestry.services.impl that implement IEngineService
 class EngineServiceInnerProxy
          Inner proxy that actually resolves the engine service using the EngineServiceSource, then replaces itself in the outer proxy.
 class EngineServiceOuterProxy
          Outer proxy for engine services.
 

Methods in org.apache.tapestry.services.impl that return IEngineService
 IEngineService EngineServiceContribution.getService()
           
 IEngineService ServiceMapImpl.getService(String name)
           
 IEngineService ServiceMapImpl.resolveEngineService(String name)
          This returns the actual service, not the outer proxy.
 IEngineService EngineServiceSource.resolveEngineService(String name)
          Obtains an actual service implementation, not a proxy.
 

Methods in org.apache.tapestry.services.impl with parameters of type IEngineService
 ILink LinkFactoryImpl.constructLink(IEngineService service, boolean post, Map parameters, boolean stateful)
           
protected  void LinkFactoryImpl.finalizeParameters(IEngineService service, Map parameters)
           
 void ComponentEventConnectionWorker.setEventEngine(IEngineService eventEngine)
          Sets the engine service that will be used to construct callback URL references to invoke the specified components event listener.
 void DojoAjaxResponseContributorImpl.setPageService(IEngineService service)
           
 void EngineServiceContribution.setService(IEngineService service)
           
 

Constructors in org.apache.tapestry.services.impl with parameters of type IEngineService
DojoAjaxResponseBuilder(IRequestCycle cycle, RequestLocaleManager localeManager, MarkupWriterSource markupWriterSource, WebResponse webResponse, List errorPages, AssetFactory assetFactory, String namespace, IEngineService pageService)
          Creates a new response builder with the required services it needs to render the response when DojoAjaxResponseBuilder.renderResponse(IRequestCycle) is called.
 



Copyright © 2006-2008 Apache Software Foundation. All Rights Reserved.