Changeset 787


Ignore:
Timestamp:
01/17/13 09:37:33 (12 years ago)
Author:
wojtekp
Message:
 
File:
1 edited

Legend:

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

    r501 r787  
    7979        public static final String SIMULATION_STATISTICS = CREATESTATISTICS + ".simulation"; 
    8080         
     81        public static final String COOLEMALL = "coolemall"; 
     82        public static final String COOLEMALL_RESOURCE = COOLEMALL + ".resdesc"; 
     83 
    8184        /** 
    8285         * The main output folders base name 
     
    178181        public String [] resForUtilizationChart; 
    179182         
     183        public String coolEmAllResdescFileName = null; 
     184 
    180185        /** 
    181186         * An empty constructor. 
     
    353358                        co.numberOfSimulations = 1; 
    354359                } 
     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                } 
    355367                return co; 
    356368        } 
Note: See TracChangeset for help on using the changeset viewer.