org.apache.wicket.markup.renderStrategy
Interface IHeaderRenderStrategy

All Known Implementing Classes:
AbstractHeaderRenderStrategy, ChildFirstHeaderRenderStrategy, ParentFirstHeaderRenderStrategy

public interface IHeaderRenderStrategy

Allows for different header render strategies. The difference per strategy will be order in which components are asked to add to the markup header section. Before 1.5 it was page->container->child. Since 1.5 it has been changed to child->container->parent (see WICKET-2693)

Author:
Juergen Donnerstag

Method Summary
 void renderHeader(HtmlHeaderContainer headerContainer, Component component)
          Implements the render strategy
 

Method Detail

renderHeader

void renderHeader(HtmlHeaderContainer headerContainer,
                  Component component)
Implements the render strategy

Parameters:
headerContainer - The HeaderContainer associated to the response
component - The root component (e.g. Page) to start the render process


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