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:
java.io.Serializable,java.lang.Iterable<IOnComponentTagListener>,IOnComponentTagListener
public class OnComponentTagListenerCollection extends org.apache.wicket.util.listener.ListenerCollection<IOnComponentTagListener> implements IOnComponentTagListener
Collection of on-component-tag listeners- Author:
- Igor Vaynberg (ivaynberg)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OnComponentTagListenerCollection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonComponentTag(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
-
-
-
-
Method Detail
-
onComponentTag
public void onComponentTag(Component component, ComponentTag tag)
Description copied from interface:IOnComponentTagListenerCalled before Component#onComponentTag(ComponentTag)- Specified by:
onComponentTagin interfaceIOnComponentTagListener- Parameters:
component- the component whose tag is being modifiedtag- the component tag being modified
-
-