Interface Parameterizable
-
- All Known Subinterfaces:
Reparameterizable
public interface ParameterizableComponents should implement this interface if they wish to be provided with parameters during startup.The Parameterizable interface is a light-weight alternative to the
Configurableinterface. As such, theParameterizableinterface and theConfigurableinterface are not compatible.This interface will be called after
Composable.compose()and beforeInitializable.initialize().- Version:
- CVS $Revision: 1.18 $ $Date: 2004/02/11 14:34:25 $
- Author:
- Avalon Development Team
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidparameterize(Parameters parameters)Provide component with parameters.
-
-
-
Method Detail
-
parameterize
void parameterize(Parameters parameters) throws ParameterException
Provide component with parameters.- Parameters:
parameters- the parameters. Must not benull.- Throws:
ParameterException- if parameters are invalid
-
-