wicket
Interface IComponentResolver

All Known Implementing Classes:
AutoComponentResolver, AutoLinkResolver, AutoLinkResolver.AutolinkBookmarkablePageLink, AutoLinkResolver.AutolinkExternalLink, Border

public interface IComponentResolver

ApplicationSettings maintains a list of IComponentResolvers. IComponentResolvers are responsible for mapping component names to Wicket components.

Author:
Juergen Donnerstag

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

Method Detail

resolve

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

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 handled by the resolver, false otherwise.


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