cdox.util.conf
Interface Configurable
- All Known Implementing Classes:
- CDoxAction
- public interface Configurable
Implementing this interface will enable the class to be configured in an easy way. Once
the configuration is read (by instanciating the ConfigurationDialog) you can easily
configure your objects by calling the configure method in ConfigurationDialog. You must
simply map your Configurable objects by their name in the configuration XML file in the
HashMap you give configure() as parameter.
- Version:
- May 22nd 2002
- Author:
- Rutger Bezema, Andreas Schmitz
- See Also:
ConfigurationDialog.configure(java.util.HashMap)
Method Summary |
void |
configure(java.lang.Object o)
This method will be called to configure the object. |
configure
public void configure(java.lang.Object o)
- This method will be called to configure the object.
- Parameters:
o
- the object containing the configuration.