- Timestamp:
- 10/31/12 13:52:06 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/trunk/build/classes/schedframe/scheduling/tasks/JobInterface.java
r477 r539 11 11 * 12 12 */ 13 public interface JobInterface<T> extends WorkloadUnit <T> {13 public interface JobInterface<T> extends WorkloadUnit, DescriptionContainer<T> { 14 14 15 15 /** … … 18 18 * @throws NoSuchFieldException if there is no tasks for this job, and job id can not be obtained 19 19 */ 20 public abstract String getId() throws NoSuchFieldException;20 //public abstract String getId() throws NoSuchFieldException; 21 21 22 22 /** … … 44 44 * @return constant which represents current status of this job 45 45 */ 46 public int getStatus();46 //public int getStatus(); 47 47 48 public int getUserID();48 //public int getUserID(); 49 49 }
Note: See TracChangeset
for help on using the changeset viewer.