Module org.apache.wicket.core
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:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.wicket.util.listener.ListenerCollection
ListenerCollection.INotifier<T>
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
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 Details
-
ComponentInitializationListenerCollection
-
-
Method Details
-
onInitialize
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.
-