Ignore:
Timestamp:
10/01/12 10:05:16 (13 years ago)
Author:
wojtekp
Message:
 
Location:
DCWoRMS/trunk/src/schedframe/scheduling/plan
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • DCWoRMS/trunk/src/schedframe/scheduling/plan/ScheduledTaskInterface.java

    r477 r478  
    192192        public ArrayList<AllocationInterface> getAllocations(); 
    193193         
    194         public WorkloadUnit<?> getTask(); 
     194        public WorkloadUnit getTask(); 
    195195 
    196196} 
  • DCWoRMS/trunk/src/schedframe/scheduling/plan/impl/ScheduledTask.java

    r477 r478  
    178178         
    179179 
    180         protected WorkloadUnit<?> task; 
     180        protected WorkloadUnit task; 
    181181        protected ArrayList<AllocationInterface> allocationList; 
    182182 
    183         public ScheduledTask(WorkloadUnit<?> task){ 
     183        public ScheduledTask(WorkloadUnit task){ 
    184184                this(); 
    185185                this.task = task; 
     
    190190        } 
    191191         
    192         public WorkloadUnit<?> getTask(){ 
     192        public WorkloadUnit getTask(){ 
    193193                return this.task; 
    194194        } 
Note: See TracChangeset for help on using the changeset viewer.