wicket.markup.resolver
Class HtmlHeaderResolver

java.lang.Object
  extended by wicket.markup.resolver.HtmlHeaderResolver
All Implemented Interfaces:
java.io.Serializable, IComponentResolver

public class HtmlHeaderResolver
extends java.lang.Object
implements IComponentResolver

This is a tag resolver which handles <head> and <wicket:head>tags. It must be registered (with the application) and assumes that a ComponentTag respectively a WicketTag has already been created (see HtmlheaderSectionHandler and WicketTagIdentifier).

Provided the current tag is a <head>, a HtmlHeaderContainer component is created, (auto) added to the component hierarchie and immediately rendered. Please see the javadoc for HtmlHeaderContainer on how it treats the tag.

In case of <wicket:head> a simple WebMarkupContainer handles the tag.

Author:
Juergen Donnerstag
See Also:
Serialized Form

Constructor Summary
HtmlHeaderResolver()
           
 
Method Summary
 boolean resolve(MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
          Try to resolve the tag, then create a component, add it to the container and render it.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

HtmlHeaderResolver

public HtmlHeaderResolver()
Method Detail

resolve

public boolean resolve(MarkupContainer container,
                       MarkupStream markupStream,
                       ComponentTag tag)
Try to resolve the tag, then create a component, add it to the container and render it.

Specified by:
resolve in interface IComponentResolver
Parameters:
container - The container parsing its markup
markupStream - The current markupStream
tag - The current component tag while parsing the markup
Returns:
true, if componentId was handle by the resolver. False, otherwise
See Also:
IComponentResolver.resolve(MarkupContainer, MarkupStream, ComponentTag)


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