Ignore:
Timestamp:
01/28/13 10:10:34 (12 years ago)
Author:
wojtekp
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • DCWoRMS/trunk/src/simulator/ConfigurationOptions.java

    r787 r802  
    7070        public static final String CREATEDIAGRAMS_ENERGYUSAGE = CREATEDIAGRAMS + ".respowerusage"; 
    7171        public static final String CREATEDIAGRAMS_AIRFLOW = CREATEDIAGRAMS + ".resairflow"; 
     72        public static final String CREATEDIAGRAMS_TEMPERATURE = CREATEDIAGRAMS + ".restemperature"; 
    7273        public static final String CREATEDIAGRAMS_RESOURCES_SCALE = CREATEDIAGRAMS_UTILIZATION + ".scale"; 
    7374 
     
    172173        public boolean creatediagrams_respowerusage = false; 
    173174        public boolean creatediagrams_resairflow = false; 
     175        public boolean creatediagrams_restemperature = false; 
    174176        public double  creatediagrams_resources_scale = 1; 
    175177 
     
    179181        public String [] resForEnergyChart; 
    180182        public String [] resForAirFlowChart; 
     183        public String [] resForTemperatureChart; 
    181184        public String [] resForUtilizationChart; 
    182185         
     
    320323                 
    321324                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 { 
    322334                        co.creatediagrams_tasks = Boolean.valueOf( 
    323335                                        bundle.getString(CREATEDIAGRAMS_TASKS)).booleanValue(); 
Note: See TracChangeset for help on using the changeset viewer.