(String configFile)
| 38 | private SystemInfo info; |
| 39 | |
| 40 | public MainHandler(String configFile) throws IOException { |
| 41 | this.config = new Properties(); |
| 42 | this.config.load(new FileInputStream(configFile)); |
| 43 | MainHandler.instance = this; |
| 44 | info = new SystemInfo(this); |
| 45 | } |
| 46 | |
| 47 | public MainHandler(Properties properties) { |
| 48 | this.config = properties; |