- Timestamp:
- 06/26/14 14:18:01 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/dcworms/schedframe/scheduling/ExecTask.java
r1362 r1396 4 4 5 5 import schedframe.scheduling.ExecutionHistoryItem; 6 import schedframe.scheduling.Resource HistoryItem;6 import schedframe.scheduling.ResourceItem; 7 7 import schedframe.scheduling.tasks.TaskInterface; 8 import schedframe.scheduling.tasks.phases.ResourceConsumption;9 8 import schedframe.scheduling.tasks.phases.ExecutionProfile; 10 9 import schedframe.scheduling.tasks.requirements.ResourceParameterName; … … 15 14 public Object getExpectedSpecificResource(ResourceParameterName resourceName); 16 15 17 public LinkedList<ExecutionHistoryItem> getExecHistory(); 18 public LinkedList<ResourceHistoryItem> getAllocatedResources(); 16 public ExecutionProfile getExecutionProfile(); 19 17 20 public ExecutionProfile getResourceConsumptionProfile();21 public ResourceConsumption getCurrentResourceConsumption();18 public LinkedList<ResourceItem> getAllocatedResources(); 19 public String getSchedulerName(); 22 20 23 public String getSchedulerName(); 21 public LinkedList<ExecutionHistoryItem> getExecutionHistory(); 22 24 23 }
Note: See TracChangeset
for help on using the changeset viewer.