Package org.apache.wicket.application
Class ComponentInitializationListenerCollection
- java.lang.Object
-
- org.apache.wicket.util.listener.ListenerCollection<IComponentInitializationListener>
-
- org.apache.wicket.application.ComponentInitializationListenerCollection
-
- All Implemented Interfaces:
Serializable
,Iterable<IComponentInitializationListener>
,IComponentInitializationListener
public class ComponentInitializationListenerCollection extends ListenerCollection<IComponentInitializationListener> implements IComponentInitializationListener
- 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 ComponentInitializationListenerCollection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onInitialize(Component component)
Called for every component after its Component#onInitialize method has 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
-
ComponentInitializationListenerCollection
public ComponentInitializationListenerCollection()
-
-
Method Detail
-
onInitialize
public void onInitialize(Component component)
Description copied from interface:IComponentInitializationListener
Called for every component after its Component#onInitialize method has been executed.- Specified by:
onInitialize
in interfaceIComponentInitializationListener
- Parameters:
component
- the component that is being instantiated.
-
-