Changeset 493 for DCWoRMS/trunk/src/simulator/ConfigurationOptions.java
- Timestamp:
- 10/09/12 14:38:34 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/trunk/src/simulator/ConfigurationOptions.java
r490 r493 76 76 public static final String JOBS_STATISTICS = CREATESTATISTICS + ".jobs"; 77 77 public static final String SIMULATION_STATISTICS = CREATESTATISTICS + ".simulation"; 78 public static final String FORMAT_STATISTICS_OUTPUT = CREATESTATISTICS + ".formatoutput";79 78 80 79 /** … … 172 171 public boolean createjobsstatistics = true; 173 172 public boolean createsimulationstatistics = true; 174 public boolean formatstatisticsoutput = false;175 173 176 174 public String[] resForEnergyChart; … … 350 348 co.createsimulationstatistics = true; 351 349 } 352 try { 353 co.formatstatisticsoutput = Boolean.valueOf( 354 bundle.getString(FORMAT_STATISTICS_OUTPUT)).booleanValue(); 355 } catch(MissingResourceException e){ 356 co.formatstatisticsoutput = false; 357 } 358 350 359 351 try { 360 352 co.numberOfSimulations = Integer.valueOf(bundle.getString(NUMBER_OF_SIMULATIONS)).intValue();
Note: See TracChangeset
for help on using the changeset viewer.