org.apache.avalon.framework.context
Interface Contextualizable
public interface Contextualizable
This inteface should be implemented by components that need
a Context to work. Context contains runtime generated object
provided by the Container to this Component.
CVS $Revision: 1.15 $ $Date: 2004/02/11 14:34:25 $ void | contextualize(Context context) - Pass the Context to the component.
|
contextualize
public void contextualize(Context context)
throws ContextException
Pass the Context to the component.
This method is called after the Loggable.setLogger() (if present)
method and before any other method.
context
- the context. Must not be null
.