Package org.apache.wicket.application
Interface IComponentInitializationListener
-
- All Known Implementing Classes:
ComponentInitializationListenerCollection
- 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 IComponentInitializationListener
Listener interface that receives messages when components are initialized (after Component#onInitialize method has been executed). Implementations must be thread safe- Author:
- Igor Vaynberg
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onInitialize(Component component)
Called for every component after its Component#onInitialize method has been executed.
-
-
-
Method Detail
-
onInitialize
void onInitialize(Component component)
Called for every component after its Component#onInitialize method has been executed.- Parameters:
component
- the component that is being instantiated.
-
-