Changeset 883 for DCWoRMS/branches/coolemall/src/dcworms/schedframe
- Timestamp:
- 02/26/13 08:41:50 (12 years ago)
- Location:
- DCWoRMS/branches/coolemall
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/dcworms/schedframe/scheduling/Executable.java
r676 r883 14 14 import org.joda.time.DateTimeUtilsExt; 15 15 import org.joda.time.ReadableDuration; 16 import org.qcg.broker.schemas.resreqs.ResourceConsumptionProfileType; 16 17 17 18 … … 26 27 import schedframe.scheduling.tasks.AbstractProcessesGroup; 27 28 import schedframe.scheduling.tasks.Task; 29 import schedframe.scheduling.tasks.phases.ResourceConsumption; 30 import schedframe.scheduling.tasks.phases.ResourceConsumptionProfile; 28 31 import schedframe.scheduling.tasks.requirements.ResourceParameterName; 29 32 … … 363 366 return false; 364 367 }*/ 368 369 public ResourceConsumptionProfile getResourceConsumptionProfile(){ 370 return task.getResourceConsumptionProfile(); 371 } 372 373 private int currentPhase = 0; 374 375 public int getCurrentPhase() { 376 return currentPhase; 377 } 378 379 public void setCurrentPhase(int currentPhase) { 380 this.currentPhase = currentPhase; 381 } 382 383 public String getApplicationName(){ 384 return task.getApplicationName(); 385 } 365 386 366 387 }
Note: See TracChangeset
for help on using the changeset viewer.