net.contextfw.web.application.lifecycle.ViewComponent Maven / Gradle / Ivy
package net.contextfw.web.application.lifecycle;
/**
* Denotes a view component to be listening the initialization process.
*
*
* When a view component implements this interface, system calls the initialize-method
* after member injection has been done. The main purpose of this interface is to ask the system
* to initialize a child view, if it can be done. The child view can be obtained by the
* {@link ViewContext}
*
*
*/
public interface ViewComponent {
void initialize(ViewContext context);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy