Changeset 478 for DCWoRMS/trunk/src/schedframe/scheduling/plan
- Timestamp:
- 10/01/12 10:05:16 (13 years ago)
- Location:
- DCWoRMS/trunk/src/schedframe/scheduling/plan
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/trunk/src/schedframe/scheduling/plan/ScheduledTaskInterface.java
r477 r478 192 192 public ArrayList<AllocationInterface> getAllocations(); 193 193 194 public WorkloadUnit <?>getTask();194 public WorkloadUnit getTask(); 195 195 196 196 } -
DCWoRMS/trunk/src/schedframe/scheduling/plan/impl/ScheduledTask.java
r477 r478 178 178 179 179 180 protected WorkloadUnit <?>task;180 protected WorkloadUnit task; 181 181 protected ArrayList<AllocationInterface> allocationList; 182 182 183 public ScheduledTask(WorkloadUnit <?>task){183 public ScheduledTask(WorkloadUnit task){ 184 184 this(); 185 185 this.task = task; … … 190 190 } 191 191 192 public WorkloadUnit <?>getTask(){192 public WorkloadUnit getTask(){ 193 193 return this.task; 194 194 }
Note: See TracChangeset
for help on using the changeset viewer.