1
2
3
4
5 package be.dvw.administration.model;
6
7 import java.util.Calendar;
8
9 /***
10 * @author Gregory Van Seghbroeck
11 *
12 */
13 public interface Temporal {
14
15 /***
16 * @return Returns the id.
17 */
18 public int getId();
19
20 /***
21 * @param id The id to set.
22 */
23 public void setId(int id);
24
25 /***
26 * @return Returns the object
27 */
28 public Object getObject();
29
30 /***
31 * @return Returns the enddate.
32 */
33 public Calendar getEndDate();
34
35 /***
36 * @param enddate The enddate to set.
37 */
38 public void setEndDate(Calendar endDate);
39
40 /***
41 * @return Returns the startdate.
42 */
43 public Calendar getStartDate();
44
45 /***
46 * @param startdate The startdate to set.
47 */
48 public void setStartDate(Calendar startDate);
49
50 }