Package org.apache.wicket.application
Class ComponentOnConfigureListenerCollection
- java.lang.Object
-
- org.apache.wicket.util.listener.ListenerCollection<IComponentOnConfigureListener>
-
- org.apache.wicket.application.ComponentOnConfigureListenerCollection
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Iterable<IComponentOnConfigureListener>,IComponentOnConfigureListener
public class ComponentOnConfigureListenerCollection extends org.apache.wicket.util.listener.ListenerCollection<IComponentOnConfigureListener> implements IComponentOnConfigureListener
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ComponentOnConfigureListenerCollection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonConfigure(Component component)Called for every component after itsComponent#onConfigure()andBehavior.onConfigure(org.apache.wicket.Component)methods have been executed).-
Methods inherited from class org.apache.wicket.util.listener.ListenerCollection
add, isAllowingDuplicates, isAllowingNulls, iterator, notify, notifyIgnoringExceptions, remove, reversedNotify, reversedNotifyIgnoringExceptions
-
-
-
-
Method Detail
-
onConfigure
public void onConfigure(Component component)
Description copied from interface:IComponentOnConfigureListenerCalled for every component after itsComponent#onConfigure()andBehavior.onConfigure(org.apache.wicket.Component)methods have been executed).- Specified by:
onConfigurein interfaceIComponentOnConfigureListener- Parameters:
component- the component that is being configured.
-
-