edu.iu.iv.common.boot
Interface Initializable
- All Known Implementing Classes:
- IVCInitializer
- public interface Initializable
A class that is initializable. It will be passed a ConfigFile object that will hold
all the attributes read in from a config file so the class can initialize itself.
Note also that initializables must have a default no-arg constructor in order to be
initialized from the BootLoader.
- Author:
- Team IVC
|
Method Summary |
void |
initialize(ConfigFile configFile)
Given a config file, this initializable object will initialize itself. |
initialize
public void initialize(ConfigFile configFile)
- Given a config file, this initializable object will initialize itself.
- Parameters:
configFile - the configuration file read in.