KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > pim > business > api > TaskI


1 package org.enhydra.pim.business.api;
2
3 /**
4  * @author P.Djojic Apr 20, 2005 9:17:36 PM
5  *
6  * TODO TaskI
7  */

8
9 public interface TaskI extends BasePimInterface{
10
11     /**
12      * Sets Alarm_note.
13      * @param _alarm_note new value.
14      *
15      * @uml.property name="alarm_note"
16      */

17     public void setAlarm_note(String JavaDoc _alarm_note);
18
19     /**
20      * Return value of Alarm_note.
21      * @return value of Alarm_note.
22      *
23      * @uml.property name="alarm_note"
24      */

25     public String JavaDoc getAlarm_note();
26
27     /**
28      * Sets Date_start.
29      * @param _date_start new value.
30      *
31      * @uml.property name="date_start"
32      */

33     public void setDate_start(java.sql.Date JavaDoc _date_start);
34
35     /**
36      * Return value of Date_start.
37      * @return value of Date_start.
38      *
39      * @uml.property name="date_start"
40      */

41     public java.sql.Date JavaDoc getDate_start();
42
43     /**
44      * Sets Date_stop.
45      * @param _date_stop new value.
46      *
47      * @uml.property name="date_stop"
48      */

49     public void setDate_stop(java.sql.Date JavaDoc _date_stop);
50
51     /**
52      * Return value of Date_stop.
53      * @return value of Date_stop.
54      *
55      * @uml.property name="date_stop"
56      */

57     public java.sql.Date JavaDoc getDate_stop();
58
59     /**
60      * Sets Time_start.
61      * @param _time_start new value.
62      *
63      * @uml.property name="time_start"
64      */

65     public void setTime_start(java.sql.Time JavaDoc _time_start);
66
67     /**
68      * Return value of Time_start.
69      * @return value of Time_start.
70      *
71      * @uml.property name="time_start"
72      */

73     public java.sql.Time JavaDoc getTime_start();
74
75     /**
76      * Sets Time_stop.
77      * @param _time_stop new value.
78      *
79      * @uml.property name="time_stop"
80      */

81     public void setTime_stop(java.sql.Time JavaDoc _time_stop);
82
83     /**
84      * Return value of Time_stop.
85      * @return value of Time_stop.
86      *
87      * @uml.property name="time_stop"
88      */

89     public java.sql.Time JavaDoc getTime_stop();
90
91     /**
92      * Sets Alarm.
93      * @param _alarm new value.
94      *
95      * @uml.property name="alarm"
96      */

97     public void setAlarm(boolean _alarm);
98
99     /**
100      * Return value of Alarm.
101      * @return value of Alarm.
102      *
103      * @uml.property name="alarm"
104      */

105     public boolean getAlarm();
106
107     /**
108      * Sets Priority.
109      * @param _priority new value.
110      *
111      * @uml.property name="priority"
112      */

113     public void setPriority(int _priority);
114
115     /**
116      * Return value of Priority.
117      * @return value of Priority.
118      *
119      * @uml.property name="priority"
120      */

121     public int getPriority();
122
123     /**
124      * Sets Completion.
125      * @param _completion new value.
126      *
127      * @uml.property name="completion"
128      */

129     public void setCompletion(int _completion);
130
131     /**
132      * Return value of Completion.
133      * @return value of Completion.
134      *
135      * @uml.property name="completion"
136      */

137     public int getCompletion();
138
139     /**
140      * Sets Repaeat_type.
141      * @param _repaeat_type new value.
142      *
143      * @uml.property name="repaeat_type"
144      */

145     public void setRepaeat_type(int _repaeat_type);
146
147     /**
148      * Return value of Repaeat_type.
149      * @return value of Repaeat_type.
150      *
151      * @uml.property name="repaeat_type"
152      */

153     public int getRepaeat_type();
154
155     /**
156      * Sets Repaeat_count.
157      * @param _repaeat_count new value.
158      *
159      * @uml.property name="repaeat_count"
160      */

161     public void setRepaeat_count(int _repaeat_count);
162
163     /**
164      * Return value of Repaeat_count.
165      * @return value of Repaeat_count.
166      *
167      * @uml.property name="repaeat_count"
168      */

169     public int getRepaeat_count();
170
171     /**
172      * Sets Note.
173      * @param _note new value.
174      *
175      * @uml.property name="note"
176      */

177     public void setNote(String JavaDoc _note);
178
179     /**
180      * Return value of Note.
181      * @return value of Note.
182      *
183      * @uml.property name="note"
184      */

185     public String JavaDoc getNote();
186
187     /**
188      * Sets Owner.
189      * @param _owner new value.
190      *
191      * @uml.property name="owner"
192      */

193     public void setOwner(OwnerI _owner);
194
195     /**
196      * Return value of Owner.
197      * @return value of Owner.
198      *
199      * @uml.property name="owner"
200      * @uml.associationEnd multiplicity="(0 1)"
201      */

202     public OwnerI getOwner();
203
204     
205     
206 }
Popular Tags