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.application   
org.apache.wicket.behavior   
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.markup.html.tree Package for Tree components. 
org.apache.wicket.resource Locale aware resouce loaders. 
org.apache.wicket.resource.aggregation   
org.apache.wicket.resource.dependencies   
org.apache.wicket.resource.filtering   
 

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.
 

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 Component.renderHead(Component component, IHeaderResponse response)
          CAUTION: this method is not meant to be overridden like it was in wicket 1.4 when implementing IHeaderContributor. overload Component.renderHead(org.apache.wicket.markup.html.IHeaderResponse) instead to contribute to the response header.
 void Component.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.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 AbstractDefaultAjaxBehavior.renderHead(Component component, IHeaderResponse response)
           
 void AbstractAjaxTimerBehavior.renderHead(Component component, 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(Component component, IHeaderResponse response)
           
 void AjaxFormChoiceComponentUpdatingBehavior.renderHead(Component component, IHeaderResponse response)
           
 

Uses of IHeaderResponse in org.apache.wicket.application
 

Methods in org.apache.wicket.application with parameters of type IHeaderResponse
 void HeaderContributorListenerCollection.renderHead(IHeaderResponse response)
           
 

Uses of IHeaderResponse in org.apache.wicket.behavior
 

Methods in org.apache.wicket.behavior with parameters of type IHeaderResponse
 void Behavior.renderHead(Component component, 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
 

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 IComponentAwareHeaderContributor.renderHead(Component component, IHeaderResponse response)
          Render to the web response whatever the component-aware wants to contribute to the head section.
 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.
 void CheckGroupSelector.renderHead(IHeaderResponse response)
           
 void CheckBoxSelector.renderHead(IHeaderResponse response)
           
 void AbstractCheckSelector.renderHead(IHeaderResponse response)
           
 void CheckboxMultipleChoiceSelector.renderHead(IHeaderResponse response)
           
 

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.markup.html.tree
 

Methods in org.apache.wicket.markup.html.tree with parameters of type IHeaderResponse
 void AbstractTree.renderHead(IHeaderResponse response)
           
 void BaseTree.renderHead(IHeaderResponse 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, ResourceReferenceAndStringData data)
          Helper that calls the proper IHeaderResponse.render*Reference method based on the input.
static void ResourceUtil.renderTo(IHeaderResponse resp, ResourceReference ref, boolean css, String string)
          Deprecated. Will be removed in the next major release
 

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 dependencies).
 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.
 



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