Uses of Interface
org.apache.wicket.markup.html.IHeaderResponse

Packages that use IHeaderResponse
org.apache.wicket The core Wicket package. 
org.apache.wicket.ajax   
org.apache.wicket.ajax.form   
org.apache.wicket.behavior   
org.apache.wicket.extensions.ajax.markup.html   
org.apache.wicket.extensions.ajax.markup.html.autocomplete   
org.apache.wicket.extensions.ajax.markup.html.form.upload   
org.apache.wicket.extensions.markup.html.form.palette   
org.apache.wicket.extensions.yui   
org.apache.wicket.extensions.yui.calendar   
org.apache.wicket.markup.html Base package of HTML markup. 
org.apache.wicket.markup.html.form HTML Forms and form components. 
org.apache.wicket.markup.html.form.upload Support for upload forms (using multipart requests). 
org.apache.wicket.markup.html.internal   
org.apache.wicket.protocol.http.portlet   
org.apache.wicket.resource Locale aware resouce loaders. 
org.apache.wicket.resource.aggregation   
org.apache.wicket.resource.dependencies   
org.apache.wicket.resource.filtering   
org.apache.wicket.velocity   
 

Uses of IHeaderResponse in org.apache.wicket
 

Methods in org.apache.wicket that return IHeaderResponse
 IHeaderResponse Application.decorateHeaderResponse(IHeaderResponse response)
          INTERNAL METHOD - You shouldn't need to call this.
 IHeaderResponse RequestContext.getHeaderResponse()
          Used to override response objects, typically used by the portlet implementation.
 

Methods in org.apache.wicket with parameters of type IHeaderResponse
 IHeaderResponse Application.decorateHeaderResponse(IHeaderResponse response)
          INTERNAL METHOD - You shouldn't need to call this.
 void Application.notifyRenderHeadListener(IHeaderResponse response)
          INTERNAL
 

Uses of IHeaderResponse in org.apache.wicket.ajax
 

Methods in org.apache.wicket.ajax that return IHeaderResponse
 IHeaderResponse AjaxRequestTarget.getHeaderResponse()
          Returns the header response associated with current AjaxRequestTarget.
 

Methods in org.apache.wicket.ajax with parameters of type IHeaderResponse
 void AbstractAjaxTimerBehavior.renderHead(IHeaderResponse response)
           
 void AbstractDefaultAjaxBehavior.renderHead(IHeaderResponse response)
           
 

Uses of IHeaderResponse in org.apache.wicket.ajax.form
 

Methods in org.apache.wicket.ajax.form with parameters of type IHeaderResponse
 void OnChangeAjaxBehavior.renderHead(IHeaderResponse response)
           
 void AjaxFormChoiceComponentUpdatingBehavior.renderHead(IHeaderResponse response)
           
 

Uses of IHeaderResponse in org.apache.wicket.behavior
 

Methods in org.apache.wicket.behavior with parameters of type IHeaderResponse
 void AbstractHeaderContributor.renderHead(IHeaderResponse response)
           
 void AbstractBehavior.renderHead(IHeaderResponse response)
           
 void AbstractAjaxBehavior.renderHead(IHeaderResponse response)
           
 

Uses of IHeaderResponse in org.apache.wicket.extensions.ajax.markup.html
 

Methods in org.apache.wicket.extensions.ajax.markup.html with parameters of type IHeaderResponse
protected  void AjaxLazyLoadPanel.handleCallbackScript(IHeaderResponse response, String callbackScript)
          Allows subclasses to change the callback script if needed.
 void AjaxIndicatorAppender.renderHead(IHeaderResponse response)
           
 

Uses of IHeaderResponse in org.apache.wicket.extensions.ajax.markup.html.autocomplete
 

Methods in org.apache.wicket.extensions.ajax.markup.html.autocomplete with parameters of type IHeaderResponse
 void AbstractAutoCompleteBehavior.renderHead(IHeaderResponse response)
           
 

Uses of IHeaderResponse in org.apache.wicket.extensions.ajax.markup.html.form.upload
 

Methods in org.apache.wicket.extensions.ajax.markup.html.form.upload with parameters of type IHeaderResponse
 void UploadProgressBar.renderHead(IHeaderResponse response)
           
 

Uses of IHeaderResponse in org.apache.wicket.extensions.markup.html.form.palette
 

Methods in org.apache.wicket.extensions.markup.html.form.palette with parameters of type IHeaderResponse
 void Palette.renderHead(IHeaderResponse response)
          Renders header contributions
 

Uses of IHeaderResponse in org.apache.wicket.extensions.yui
 

Methods in org.apache.wicket.extensions.yui with parameters of type IHeaderResponse
static void YuiLib.load(IHeaderResponse response)
          Load the YUI loader script.
 

Uses of IHeaderResponse in org.apache.wicket.extensions.yui.calendar
 

Methods in org.apache.wicket.extensions.yui.calendar with parameters of type IHeaderResponse
 void DatePicker.renderHead(IHeaderResponse response)
           
 

Uses of IHeaderResponse in org.apache.wicket.markup.html
 

Classes in org.apache.wicket.markup.html that implement IHeaderResponse
 class DecoratingHeaderResponse
          This is simply a helper implementation of IHeaderResponse that really delegates all of its method calls to the IHeaderResponse that is passed into the constructor.
 

Methods in org.apache.wicket.markup.html that return IHeaderResponse
 IHeaderResponse IHeaderResponseDecorator.decorate(IHeaderResponse response)
          The method that does the decorating of the IHeaderResponse.
protected  IHeaderResponse DecoratingHeaderResponse.getRealResponse()
          Returns the actual response being decorated for subclasses to be able to pass it off to other objects if they need to do so.
 

Methods in org.apache.wicket.markup.html with parameters of type IHeaderResponse
 IHeaderResponse IHeaderResponseDecorator.decorate(IHeaderResponse response)
          The method that does the decorating of the IHeaderResponse.
 void IHeaderContributor.renderHead(IHeaderResponse response)
          Render to the web response whatever the component wants to contribute to the head section.
 

Constructors in org.apache.wicket.markup.html with parameters of type IHeaderResponse
DecoratingHeaderResponse(IHeaderResponse real)
          Create a header response that simply delegates all methods to the one that is passed in here.
 

Uses of IHeaderResponse in org.apache.wicket.markup.html.form
 

Methods in org.apache.wicket.markup.html.form with parameters of type IHeaderResponse
protected  void Form.registerJavascriptNamespaces(IHeaderResponse response)
          Produces javascript that registereds Wicket.Forms namespaces
 void Form.renderHead(IHeaderResponse response)
          Render to the web response whatever the component wants to contribute to the head section.
 

Uses of IHeaderResponse in org.apache.wicket.markup.html.form.upload
 

Methods in org.apache.wicket.markup.html.form.upload with parameters of type IHeaderResponse
 void MultiFileUploadField.renderHead(IHeaderResponse response)
           
 

Uses of IHeaderResponse in org.apache.wicket.markup.html.internal
 

Classes in org.apache.wicket.markup.html.internal that implement IHeaderResponse
 class HeaderResponse
          Default implementation of the IHeaderResponse interface.
 

Methods in org.apache.wicket.markup.html.internal that return IHeaderResponse
 IHeaderResponse HtmlHeaderContainer.getHeaderResponse()
          Returns the header response.
protected  IHeaderResponse HtmlHeaderContainer.newHeaderResponse()
          Factory method for creating header response
 

Uses of IHeaderResponse in org.apache.wicket.protocol.http.portlet
 

Classes in org.apache.wicket.protocol.http.portlet that implement IHeaderResponse
 class EmbeddedPortletHeaderResponse
          Portlet behaviour override of the HeaderResponse implementation, responsible for writing header contributions from portlets in the body of the response, as opposed to the head.
 

Methods in org.apache.wicket.protocol.http.portlet that return IHeaderResponse
 IHeaderResponse PortletRequestContext.getHeaderResponse()
          Override to return the special EmbeddedPortletHeaderResponse.
protected  IHeaderResponse PortletRequestContext.newPortletHeaderResponse(Response response)
           
 

Uses of IHeaderResponse in org.apache.wicket.resource
 

Methods in org.apache.wicket.resource with parameters of type IHeaderResponse
static void ResourceUtil.renderTo(IHeaderResponse resp, ResourceReference ref, boolean css, String string)
          Helper that calls the proper IHeaderResponse.render*Reference method based on the input.
 

Uses of IHeaderResponse in org.apache.wicket.resource.aggregation
 

Classes in org.apache.wicket.resource.aggregation that implement IHeaderResponse
 class AbstractDependencyRespectingResourceAggregatingHeaderResponse<R extends ResourceReferenceCollection,K>
          An implementation of AbstractResourceAggregatingHeaderResponse that renders references in the correct order if they are AbstractResourceDependentResourceReference references, ensuring that dependencies are rendered in the proper order before their parent (even if they do not appear in the same group as the parent of the depdencies).
 class AbstractResourceAggregatingHeaderResponse<R extends ResourceReferenceCollection,K>
          A header response that can be used to aggregate resources (primarily resource references) into groups that can be rendered after the entire hierarchy of IHeaderContributors have been traversed.
 

Constructors in org.apache.wicket.resource.aggregation with parameters of type IHeaderResponse
AbstractDependencyRespectingResourceAggregatingHeaderResponse(IHeaderResponse real)
          Construct.
AbstractResourceAggregatingHeaderResponse(IHeaderResponse real)
          Construct.
 

Uses of IHeaderResponse in org.apache.wicket.resource.dependencies
 

Classes in org.apache.wicket.resource.dependencies that implement IHeaderResponse
 class ResourceReferenceDependencyInjectingHeaderResponse
          A header response that can be used by IHeaderResponseDecorator to wrap another IHeaderResponse.
 

Constructors in org.apache.wicket.resource.dependencies with parameters of type IHeaderResponse
ResourceReferenceDependencyInjectingHeaderResponse(IHeaderResponse decorated)
          If you call this constructor, you MUST override getConfigurationService().
ResourceReferenceDependencyInjectingHeaderResponse(IHeaderResponse decorated, IResourceReferenceDependencyConfigurationService configurator)
          Construct this header response with a configuration service that will be used to find dependencies.
 

Uses of IHeaderResponse in org.apache.wicket.resource.filtering
 

Classes in org.apache.wicket.resource.filtering that implement IHeaderResponse
 class HeaderResponseContainerFilteringHeaderResponse
          This header response allows you to separate things that are added to the IHeaderResponse into different buckets.
 class JavascriptFilteredIntoFooterHeaderResponse
          A header response that creates two buckets.
 

Constructors in org.apache.wicket.resource.filtering with parameters of type IHeaderResponse
HeaderResponseContainerFilteringHeaderResponse(IHeaderResponse response, String headerFilterName, HeaderResponseContainerFilteringHeaderResponse.IHeaderResponseFilter[] filters)
          Construct.
JavascriptFilteredIntoFooterHeaderResponse(IHeaderResponse response, String footerBucketName)
          Construct.
 

Uses of IHeaderResponse in org.apache.wicket.velocity
 

Methods in org.apache.wicket.velocity with parameters of type IHeaderResponse
 void VelocityContributor.renderHead(IHeaderResponse response)
           
 void VelocityJavascriptContributor.renderHead(IHeaderResponse response)
           
 



Copyright © 2004-2011 Apache Software Foundation. All Rights Reserved.