- Timestamp:
- 10/31/12 13:52:06 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/trunk/build/classes/schedframe/scheduling/tasks/Job.java
r477 r539 18 18 import schedframe.scheduling.WorkloadUnitHandler; 19 19 import schedframe.scheduling.manager.tasks.JobRegistryImpl; 20 import schedframe.scheduling.policy.AbstractManagementSystem;21 20 22 21 … … 179 178 } 180 179 181 public int getUserI D(){180 public int getUserId(){ 182 181 return this.senderId; 183 182 } … … 204 203 205 204 List<Task> readyTasks = new ArrayList<Task>(); 206 207 205 int size = tasks.size(); 206 208 207 for(int i = 0; i < size; i++){ 209 208 int parCnt; … … 216 215 } catch(Exception e){ 217 216 parCnt = 0; 218 //e.printStackTrace(); 219 } 220 if(parCnt == 0) 221 { 217 } 218 if(parCnt == 0) { 222 219 readyTasks.add(task); 223 220 } 224 else 225 { 221 else { 226 222 for(int j = 0; j < parCnt; j++){ 227 223 ParentType par = task.getDescription().getWorkflow().getParent(j);
Note: See TracChangeset
for help on using the changeset viewer.