Changeset 802 for DCWoRMS/trunk/src
- Timestamp:
- 01/28/13 10:10:34 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/trunk/src/simulator/ConfigurationOptions.java
r787 r802 70 70 public static final String CREATEDIAGRAMS_ENERGYUSAGE = CREATEDIAGRAMS + ".respowerusage"; 71 71 public static final String CREATEDIAGRAMS_AIRFLOW = CREATEDIAGRAMS + ".resairflow"; 72 public static final String CREATEDIAGRAMS_TEMPERATURE = CREATEDIAGRAMS + ".restemperature"; 72 73 public static final String CREATEDIAGRAMS_RESOURCES_SCALE = CREATEDIAGRAMS_UTILIZATION + ".scale"; 73 74 … … 172 173 public boolean creatediagrams_respowerusage = false; 173 174 public boolean creatediagrams_resairflow = false; 175 public boolean creatediagrams_restemperature = false; 174 176 public double creatediagrams_resources_scale = 1; 175 177 … … 179 181 public String [] resForEnergyChart; 180 182 public String [] resForAirFlowChart; 183 public String [] resForTemperatureChart; 181 184 public String [] resForUtilizationChart; 182 185 … … 320 323 321 324 try { 325 co.resForTemperatureChart = bundle.getString(CREATEDIAGRAMS_TEMPERATURE).split(";"); 326 if(co.resForTemperatureChart.length > 0){ 327 co.creatediagrams_restemperature = true; 328 } 329 } catch(MissingResourceException e){ 330 co.creatediagrams_restemperature = createDiagrams; 331 } 332 333 try { 322 334 co.creatediagrams_tasks = Boolean.valueOf( 323 335 bundle.getString(CREATEDIAGRAMS_TASKS)).booleanValue();
Note: See TracChangeset
for help on using the changeset viewer.