Changeset 1426 for DCWoRMS/branches
- Timestamp:
- 07/30/14 13:25:29 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/test/appProfConverter/dcworms/SoftwareProfile.java
r1419 r1426 11 11 this.taskId = executable.getApplicationName(); 12 12 13 int nPhases = executable.getExecutionProfile().get ResourceConsumptionList().size();13 int nPhases = executable.getExecutionProfile().getExecutionPhases().size(); 14 14 phases = new SoftwarePhase[nPhases]; 15 15 16 16 17 17 for (int i = 0; i < nPhases; i++) { 18 ExecutionPhase resConsumption = executable.getExecutionProfile().get ResourceConsumptionList().get(i);18 ExecutionPhase resConsumption = executable.getExecutionProfile().getExecutionPhases().get(i); 19 19 SoftwarePhase swPhase = new SoftwarePhase(); 20 20
Note: See TracChangeset
for help on using the changeset viewer.