Changeset 1399 for DCWoRMS/branches/coolemall/src/test/appProfConverter/dcworms/SoftwareProfile.java
- Timestamp:
- 06/26/14 14:24:08 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/test/appProfConverter/dcworms/SoftwareProfile.java
r1334 r1399 11 11 this.taskId = executable.getApplicationName(); 12 12 13 int nPhases = executable.get ResourceConsumptionProfile().getResourceConsumptionList().size();13 int nPhases = executable.getExecutionProfile().getResourceConsumptionList().size(); 14 14 phases = new SoftwarePhase[nPhases]; 15 15 16 16 17 17 for (int i = 0; i < nPhases; i++) { 18 ResourceConsumption resConsumption = executable.get ResourceConsumptionProfile().getResourceConsumptionList().get(i);18 ResourceConsumption resConsumption = executable.getExecutionProfile().getResourceConsumptionList().get(i); 19 19 SoftwarePhase swPhase = new SoftwarePhase(); 20 20
Note: See TracChangeset
for help on using the changeset viewer.