Package org.apache.wicket.application
Interface IComponentOnBeforeRenderListener
-
- All Known Implementing Classes:
AutoConversationManager
,ComponentOnBeforeRenderListenerCollection
,ConversationExpiryChecker
,StatelessChecker
- 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 IComponentOnBeforeRenderListener
Listener that is called right after the component'sComponent.onBeforeRender()
method was invoked.- Author:
- Matej Knopp
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onBeforeRender(Component component)
Called when the component is about to be rendered
-
-
-
Method Detail
-
onBeforeRender
void onBeforeRender(Component component)
Called when the component is about to be rendered- Parameters:
component
- the component that is about to be rendered
-
-