Changeset 494 for DCWoRMS/trunk/src/simulator
- Timestamp:
- 10/09/12 15:04:11 (13 years ago)
- Location:
- DCWoRMS/trunk/src/simulator
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/trunk/src/simulator/DataCenterWorkloadSimulator.java
r493 r494 97 97 */ 98 98 public static void main(String[] args) { 99 DataCenterWorkloadSimulator gssim= new DataCenterWorkloadSimulator();100 gssim.run(args);99 DataCenterWorkloadSimulator dcworms = new DataCenterWorkloadSimulator(); 100 dcworms.run(args); 101 101 } 102 102 … … 197 197 } 198 198 199 private void runMultiuser(String rootDirPath, DataCenterWorkloadSimulator gssim) {199 private void runMultiuser(String rootDirPath, DataCenterWorkloadSimulator dcworms) { 200 200 throw new RuntimeException("not supported yet"); 201 201 } -
DCWoRMS/trunk/src/simulator/stats/implementation/DCWormsStatistics.java
r493 r494 809 809 ChartRenderingInfo info = new ChartRenderingInfo(); 810 810 File f = new File(fileName + "." + ImageFormat.PNG); 811 final String gssimSubtitle = "Created by "811 final String dcwormsSubtitle = "Created by " 812 812 + DataCenterWorkloadSimulator.SIMULATOR_NAME 813 813 + " http://www.gssim.org/"; 814 c.addSubtitle(new TextTitle( gssimSubtitle));814 c.addSubtitle(new TextTitle(dcwormsSubtitle)); 815 815 boolean encodeAlpha = false; 816 816 int compression = 9;// values 0-9 … … 1264 1264 // info.setEntityCollection(null); 1265 1265 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)); 1268 1268 boolean encodeAlpha = false; 1269 1269 int compression = 9;
Note: See TracChangeset
for help on using the changeset viewer.