Interface Reparameterizable
-
- All Superinterfaces:
Parameterizable
public interface Reparameterizable extends Parameterizable
Components should implement this interface if they wish to be provided with parameters during its lifetime. This interface will be called after Startable.start() and before Startable.stop(). It is incompatible with the Reconfigurable interface.- Version:
- CVS $Revision: 1.11 $ $Date: 2003/02/11 15:58:41 $
- Author:
- Avalon Development Team
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
reparameterize(Parameters parameters)
Provide component with parameters.-
Methods inherited from interface org.apache.avalon.framework.parameters.Parameterizable
parameterize
-
-
-
-
Method Detail
-
reparameterize
void reparameterize(Parameters parameters) throws ParameterException
Provide component with parameters.- Parameters:
parameters
- the parameters- Throws:
ParameterException
- if parameters are invalid
-
-