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:
Serializable
,Iterable<IComponentOnConfigureListener>
,IComponentOnConfigureListener
public class ComponentOnConfigureListenerCollection extends ListenerCollection<IComponentOnConfigureListener> implements IComponentOnConfigureListener
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.wicket.util.listener.ListenerCollection
ListenerCollection.INotifier<T>
-
-
Constructor Summary
Constructors Constructor Description ComponentOnConfigureListenerCollection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onConfigure(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
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Constructor Detail
-
ComponentOnConfigureListenerCollection
public ComponentOnConfigureListenerCollection()
-
-
Method Detail
-
onConfigure
public void onConfigure(Component component)
Description copied from interface:IComponentOnConfigureListener
Called for every component after itsComponent#onConfigure()
andBehavior.onConfigure(org.apache.wicket.Component)
methods have been executed).- Specified by:
onConfigure
in interfaceIComponentOnConfigureListener
- Parameters:
component
- the component that is being configured.
-
-