| de.jwic.base.IApplication
All known Subclasses: de.jwic.base.Application,
IApplication | public interface IApplication extends Serializable(Code) | | An application is responsible for the lifecycle of an jWic application. It
creates the root control(s) and recieves events from the framework about
starting and stopping.
author: Florian Lippisch version: $Revision: 1.1 $ since: 3.0.0 |
createRootControl | public Control createRootControl(IControlContainer container)(Code) | | Create the root control(s). This method must return the
root control.
Parameters: container - |
initialize | public void initialize(SessionContext context)(Code) | | Initialize the application.
Parameters: context - |
postDestroy | public void postDestroy()(Code) | | Invoked after the SessionContext and all controls have been destroyed.
|
preDestroy | public void preDestroy()(Code) | | Invoked before the SessionContext and all controls are destroyed.
|
|
|