Ignore:
Timestamp:
10/09/12 15:04:11 (13 years ago)
Author:
wojtekp
Message:
 
Location:
DCWoRMS/trunk/src/simulator
Files:
2 edited

Legend:

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

    r493 r494  
    9797         */ 
    9898        public static void main(String[] args) { 
    99                 DataCenterWorkloadSimulator gssim = new DataCenterWorkloadSimulator(); 
    100                 gssim.run(args); 
     99                DataCenterWorkloadSimulator dcworms = new DataCenterWorkloadSimulator(); 
     100                dcworms.run(args); 
    101101        } 
    102102 
     
    197197        } 
    198198 
    199         private void runMultiuser(String rootDirPath, DataCenterWorkloadSimulator gssim) { 
     199        private void runMultiuser(String rootDirPath, DataCenterWorkloadSimulator dcworms) { 
    200200                throw new RuntimeException("not supported yet"); 
    201201        } 
  • DCWoRMS/trunk/src/simulator/stats/implementation/DCWormsStatistics.java

    r493 r494  
    809809                ChartRenderingInfo info = new ChartRenderingInfo(); 
    810810                File f = new File(fileName + "." + ImageFormat.PNG); 
    811                 final String gssimSubtitle = "Created by " 
     811                final String dcwormsSubtitle = "Created by " 
    812812                                + DataCenterWorkloadSimulator.SIMULATOR_NAME 
    813813                                + " http://www.gssim.org/"; 
    814                 c.addSubtitle(new TextTitle(gssimSubtitle)); 
     814                c.addSubtitle(new TextTitle(dcwormsSubtitle)); 
    815815                boolean encodeAlpha = false; 
    816816                int compression = 9;// values 0-9 
     
    12641264                // info.setEntityCollection(null); 
    12651265                File f = new File(fileName + "." + ImageFormat.PNG); 
    1266                 final String gssimSubtitle = "Created by " + DataCenterWorkloadSimulator.SIMULATOR_NAME + " http://www.gssim.org/"; 
    1267                 c.addSubtitle(new TextTitle(gssimSubtitle)); 
     1266                final String dcwormsSubtitle = "Created by " + DataCenterWorkloadSimulator.SIMULATOR_NAME + " http://www.gssim.org/"; 
     1267                c.addSubtitle(new TextTitle(dcwormsSubtitle)); 
    12681268                boolean encodeAlpha = false; 
    12691269                int compression = 9; 
Note: See TracChangeset for help on using the changeset viewer.