Package org.brijframework.context
Interface Context
-
- All Superinterfaces:
Initializer
- All Known Subinterfaces:
BootstrapContext,ModuleContext
public interface Context extends Initializer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EnvironmentgetEnvironment()this is release Environment of the context hierarchy.ContextgetParent()Return the parent context, ornullif there is no parent and this is the root of the context hierarchy.voidinitialize(Context context)voidstart()this is load and start root internal process of the context hierarchy.voidstop()this is release root internal process of the context hierarchy.-
Methods inherited from interface org.brijframework.lifecycle.Initializer
init, postInit, preInit
-
-
-
-
Method Detail
-
initialize
void initialize(Context context)
-
start
void start()
this is load and start root internal process of the context hierarchy.
-
stop
void stop()
this is release root internal process of the context hierarchy.
-
getParent
Context getParent()
Return the parent context, ornullif there is no parent and this is the root of the context hierarchy.
-
getEnvironment
Environment getEnvironment()
this is release Environment of the context hierarchy.
-
-