Interface Configurable
-
- All Known Subinterfaces:
Reconfigurable
public interface Configurable
This interface should be implemented by classes that need to be configured with custom parameters before initialization.
The contract surrounding aConfigurable
is that the instantiating entity must call theconfigure
method before it is valid.
Note that this interface is incompatible with Parameterizable.- Version:
- CVS $Revision: 1.16 $ $Date: 2003/02/11 15:58:38 $
- Author:
- Avalon Development Team
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
configure(Configuration configuration)
Pass theConfiguration
to theConfigurable
class.
-
-
-
Method Detail
-
configure
void configure(Configuration configuration) throws ConfigurationException
Pass theConfiguration
to theConfigurable
class.- Parameters:
configuration
- the class configurations. Must not benull
.- Throws:
ConfigurationException
- if an error occurs
-
-