Package org.apache.wicket.application
Interface IComponentOnAfterRenderListener
-
- All Known Implementing Classes:
ComponentOnAfterRenderListenerCollection
- 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 IComponentOnAfterRenderListenerListener that is called after component'sComponent.onAfterRender()method was invoked.- Author:
- Matej Knopp
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonAfterRender(Component component)Called right after the component was rendered.
-
-
-
Method Detail
-
onAfterRender
void onAfterRender(Component component)
Called right after the component was rendered.- Parameters:
component- the component that was just rendered
-
-