Package org.apache.wicket
Class ApplicationListenerCollection
- java.lang.Object
-
- org.apache.wicket.util.listener.ListenerCollection<IApplicationListener>
-
- org.apache.wicket.ApplicationListenerCollection
-
- All Implemented Interfaces:
Serializable
,Iterable<IApplicationListener>
,IApplicationListener
public class ApplicationListenerCollection extends ListenerCollection<IApplicationListener> implements IApplicationListener
- Author:
- igor
- 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 ApplicationListenerCollection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onAfterInitialized(Application application)
Called after application instance has been initializedvoid
onBeforeDestroyed(Application application)
Called before application instance is destroyed-
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
-
ApplicationListenerCollection
public ApplicationListenerCollection()
-
-
Method Detail
-
onAfterInitialized
public void onAfterInitialized(Application application)
Description copied from interface:IApplicationListener
Called after application instance has been initialized- Specified by:
onAfterInitialized
in interfaceIApplicationListener
-
onBeforeDestroyed
public void onBeforeDestroyed(Application application)
Description copied from interface:IApplicationListener
Called before application instance is destroyed- Specified by:
onBeforeDestroyed
in interfaceIApplicationListener
-
-