Uses of Class
wicket.settings.IRequestCycleSettings.RenderStrategy

Packages that use IRequestCycleSettings.RenderStrategy
wicket.settings   
 

Uses of IRequestCycleSettings.RenderStrategy in wicket.settings
 

Fields in wicket.settings declared as IRequestCycleSettings.RenderStrategy
static IRequestCycleSettings.RenderStrategy IRequestCycleSettings.ONE_PASS_RENDER
          All logical parts of a request (the action and render part) are handled within the same request.
static IRequestCycleSettings.RenderStrategy IRequestCycleSettings.REDIRECT_TO_BUFFER
          All logical parts of a request (the action and render part) are handled within the same request, but instead of streaming the render result to the browser directly, the result is cached on the server.
static IRequestCycleSettings.RenderStrategy IRequestCycleSettings.REDIRECT_TO_RENDER
          The render part of a request (opposed to the 'action part' which is either the construction of a bookmarkable page or the execution of a IRequestListener handler) is handled by a seperate request by issueing a redirect request to the browser.
 

Methods in wicket.settings that return IRequestCycleSettings.RenderStrategy
 IRequestCycleSettings.RenderStrategy Settings.getRenderStrategy()
           
 IRequestCycleSettings.RenderStrategy IRequestCycleSettings.getRenderStrategy()
          Gets in what way the render part of a request is handled.
 

Methods in wicket.settings with parameters of type IRequestCycleSettings.RenderStrategy
 void Settings.setRenderStrategy(IRequestCycleSettings.RenderStrategy renderStrategy)
           
 void IRequestCycleSettings.setRenderStrategy(IRequestCycleSettings.RenderStrategy renderStrategy)
          Sets in what way the render part of a request is handled.
 



Copyright © 2004-2007 Wicket developers. All Rights Reserved.