org.apache.wicket.behavior
Interface IComponentConfigurationBehavior

All Superinterfaces:
IBehavior, IClusterable, Serializable
All Known Implementing Classes:
AbstractAjaxBehavior, AbstractAjaxTimerBehavior, AbstractAutoCompleteBehavior, AbstractBehavior, AbstractDefaultAjaxBehavior, AbstractHeaderContributor, AbstractTransformerBehavior, AjaxEditableLabel.EditorAjaxBehavior, AjaxEditableLabel.LabelAjaxBehavior, AjaxEventBehavior, AjaxFormChoiceComponentUpdatingBehavior, AjaxFormComponentUpdatingBehavior, AjaxFormSubmitBehavior, AjaxFormValidatingBehavior, AjaxIndicatorAppender, AjaxPagingNavigationBehavior, AjaxSelfUpdatingTimerBehavior, AttributeAppender, AttributeModifier, AutoCompleteBehavior, BodyTagAttributeModifier, ContainerWithAssociatedMarkupHelper, ContextPathGenerator, DatePicker, HeaderContributor, ModalWindow.CloseButtonBehavior, OnChangeAjaxBehavior, OrderByLink.CssModifier, SimpleAttributeModifier, StringHeaderContributor, TextTemplateHeaderContributor, VelocityContributor, VelocityHeaderContributor, VelocityJavascriptContributor, WicketAjaxIndicatorAppender, WicketMessageTagHandler.AttributeLocalizer, XsltTransformerBehavior

public interface IComponentConfigurationBehavior
extends IBehavior

An add-on interface for IBehavior instances that want to contribute to a component's configuration. Any IBehavior that also implements this method will receive notifications when the component onConfigure method is being called.

Since:
1.4.16
Author:
jrthomerson

Method Summary
 void onConfigure(Component component)
          Called immediately after the onConfigure method in a component.
 
Methods inherited from interface org.apache.wicket.behavior.IBehavior
afterRender, beforeRender, bind, detach, exception, getStatelessHint, isEnabled, isTemporary, onComponentTag
 

Method Detail

onConfigure

void onConfigure(Component component)
Called immediately after the onConfigure method in a component. Since this is before the rendering cycle has begun, the behavior can modify the configuration of the component (i.e. setVisible(false))

Parameters:
component - the component being configured


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