Changeset 787
- Timestamp:
- 01/17/13 09:37:33 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/trunk/src/simulator/ConfigurationOptions.java
r501 r787 79 79 public static final String SIMULATION_STATISTICS = CREATESTATISTICS + ".simulation"; 80 80 81 public static final String COOLEMALL = "coolemall"; 82 public static final String COOLEMALL_RESOURCE = COOLEMALL + ".resdesc"; 83 81 84 /** 82 85 * The main output folders base name … … 178 181 public String [] resForUtilizationChart; 179 182 183 public String coolEmAllResdescFileName = null; 184 180 185 /** 181 186 * An empty constructor. … … 353 358 co.numberOfSimulations = 1; 354 359 } 360 361 try { 362 co.coolEmAllResdescFileName = bundle.getString(COOLEMALL_RESOURCE); 363 System.setProperty("coolemall.resdesc", co.coolEmAllResdescFileName); 364 } catch(MissingResourceException e){ 365 co.coolEmAllResdescFileName = null; 366 } 355 367 return co; 356 368 }
Note: See TracChangeset
for help on using the changeset viewer.