Package org.apache.wicket.application
Class OnComponentTagListenerCollection
- java.lang.Object
-
- org.apache.wicket.util.listener.ListenerCollection<IOnComponentTagListener>
-
- org.apache.wicket.application.OnComponentTagListenerCollection
-
- All Implemented Interfaces:
Serializable
,Iterable<IOnComponentTagListener>
,IOnComponentTagListener
public class OnComponentTagListenerCollection extends ListenerCollection<IOnComponentTagListener> implements IOnComponentTagListener
Collection of on-component-tag listeners- Author:
- Igor Vaynberg (ivaynberg)
- 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 OnComponentTagListenerCollection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onComponentTag(Component component, ComponentTag tag)
Called before Component#onComponentTag(ComponentTag)-
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
-
OnComponentTagListenerCollection
public OnComponentTagListenerCollection()
-
-
Method Detail
-
onComponentTag
public void onComponentTag(Component component, ComponentTag tag)
Description copied from interface:IOnComponentTagListener
Called before Component#onComponentTag(ComponentTag)- Specified by:
onComponentTag
in interfaceIOnComponentTagListener
- Parameters:
component
- the component whose tag is being modifiedtag
- the component tag being modified
-
-