Revision 1427,
997 bytes
checked in by wojtekp, 11 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Line | |
---|
1 | package schedframe.scheduling; |
---|
2 | |
---|
3 | |
---|
4 | public class ExecutionHistoryItem { |
---|
5 | |
---|
6 | protected long timeStamp; |
---|
7 | protected double completionPercentage; |
---|
8 | protected double estimatedDuration; |
---|
9 | protected int status; |
---|
10 | protected int resUsageIndex; |
---|
11 | |
---|
12 | public ExecutionHistoryItem(long time){ |
---|
13 | this.timeStamp = time; |
---|
14 | } |
---|
15 | |
---|
16 | public long getTimeStamp(){ |
---|
17 | return timeStamp; |
---|
18 | } |
---|
19 | |
---|
20 | public double getCompletionPercentage() { |
---|
21 | return completionPercentage; |
---|
22 | } |
---|
23 | |
---|
24 | public void setCompletionPercentage(double completionPercentage) { |
---|
25 | this.completionPercentage = completionPercentage; |
---|
26 | } |
---|
27 | |
---|
28 | public double getEstimatedDuration() { |
---|
29 | return estimatedDuration; |
---|
30 | } |
---|
31 | |
---|
32 | public void setEstimatedDuration(double estimatedDuration) { |
---|
33 | this.estimatedDuration = estimatedDuration; |
---|
34 | } |
---|
35 | |
---|
36 | public int getResIndex() { |
---|
37 | return resUsageIndex; |
---|
38 | } |
---|
39 | |
---|
40 | public void setResIndex(int resUsageIndex) { |
---|
41 | this.resUsageIndex = resUsageIndex; |
---|
42 | } |
---|
43 | |
---|
44 | public int getStatus() { |
---|
45 | return status; |
---|
46 | } |
---|
47 | |
---|
48 | public void setStatus(int status) { |
---|
49 | this.status = status; |
---|
50 | } |
---|
51 | |
---|
52 | |
---|
53 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.