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