Revision 104,
718 bytes
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Line | |
---|
1 | package schedframe.scheduling.plan; |
---|
2 | |
---|
3 | import schedframe.scheduling.utils.DescriptionContainer; |
---|
4 | |
---|
5 | public interface ScheduledTimeInterface<T> extends DescriptionContainer<T> { |
---|
6 | |
---|
7 | /** |
---|
8 | * Returns the value of field 'end'. |
---|
9 | * |
---|
10 | * @return the value of field 'End'. |
---|
11 | */ |
---|
12 | public java.util.Date getEnd(); |
---|
13 | |
---|
14 | /** |
---|
15 | * Returns the value of field 'start'. |
---|
16 | * |
---|
17 | * @return the value of field 'Start'. |
---|
18 | */ |
---|
19 | public java.util.Date getStart(); |
---|
20 | |
---|
21 | /** |
---|
22 | * Sets the value of field 'end'. |
---|
23 | * |
---|
24 | * @param end the value of field 'end'. |
---|
25 | */ |
---|
26 | public void setEnd(final java.util.Date end); |
---|
27 | |
---|
28 | /** |
---|
29 | * Sets the value of field 'start'. |
---|
30 | * |
---|
31 | * @param start the value of field 'start'. |
---|
32 | */ |
---|
33 | public void setStart(final java.util.Date start); |
---|
34 | |
---|
35 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.