- Timestamp:
- 07/30/14 12:25:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/schedframe/scheduling/ExecutionHistoryItem.java
r1362 r1423 5 5 public class ExecutionHistoryItem { 6 6 7 protected DateTimetimeStamp;7 protected long timeStamp; 8 8 protected double completionPercentage; 9 9 protected double estimatedDuration; … … 11 11 protected int resUsageIndex; 12 12 13 public ExecutionHistoryItem( DateTimetime){13 public ExecutionHistoryItem(long time){ 14 14 this.timeStamp = time; 15 15 } 16 16 17 public DateTimegetTimeStamp(){17 public long getTimeStamp(){ 18 18 return timeStamp; 19 19 }
Note: See TracChangeset
for help on using the changeset viewer.