Package org.apache.wicket.application
Class ComponentOnAfterRenderListenerCollection
- java.lang.Object
-
- org.apache.wicket.util.listener.ListenerCollection<IComponentOnAfterRenderListener>
-
- org.apache.wicket.application.ComponentOnAfterRenderListenerCollection
-
- All Implemented Interfaces:
Serializable
,Iterable<IComponentOnAfterRenderListener>
,IComponentOnAfterRenderListener
public class ComponentOnAfterRenderListenerCollection extends ListenerCollection<IComponentOnAfterRenderListener> implements IComponentOnAfterRenderListener
- 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 ComponentOnAfterRenderListenerCollection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onAfterRender(Component component)
Called right after the component was rendered.-
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
-
ComponentOnAfterRenderListenerCollection
public ComponentOnAfterRenderListenerCollection()
-
-
Method Detail
-
onAfterRender
public void onAfterRender(Component component)
Description copied from interface:IComponentOnAfterRenderListener
Called right after the component was rendered.- Specified by:
onAfterRender
in interfaceIComponentOnAfterRenderListener
- Parameters:
component
- the component that was just rendered
-
-