Package org.apache.wicket.application
Interface IComponentOnConfigureListener
-
- All Known Implementing Classes:
ComponentOnConfigureListenerCollection
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface IComponentOnConfigureListener
Listener interface that receives messages when components are configured (afterComponent.onConfigure()
andBehavior.onConfigure(org.apache.wicket.Component)
methods have been executed). Implementations must be thread safe
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onConfigure(Component component)
Called for every component after itsComponent#onConfigure()
andBehavior.onConfigure(org.apache.wicket.Component)
methods have been executed).
-
-
-
Method Detail
-
onConfigure
void onConfigure(Component component)
Called for every component after itsComponent#onConfigure()
andBehavior.onConfigure(org.apache.wicket.Component)
methods have been executed).- Parameters:
component
- the component that is being configured.
-
-