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 a
Note that this interface is incompatible with Parameterizable.
The contract surrounding a
Configurable
is that the
instantiating entity must call the configure
method before it is valid.
Note that this interface is incompatible with Parameterizable.
- Version:
- CVS $Revision: 1.18 $ $Date: 2004/02/11 14:34:24 $
- Author:
- Avalon Development Team
-
Method Summary
Modifier and TypeMethodDescriptionvoid
configure
(Configuration configuration) Pass theConfiguration
to theConfigurable
class.
-
Method Details
-
configure
Pass theConfiguration
to theConfigurable
class.- Parameters:
configuration
- the class configurations. Must not benull
.- Throws:
ConfigurationException
- if an error occurs
-