1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.contract.model; |
17 | |
|
18 | |
import java.io.Serializable; |
19 | |
import java.util.List; |
20 | |
import java.util.Stack; |
21 | |
|
22 | |
|
23 | |
|
24 | |
|
25 | |
|
26 | |
public class Dictionary implements Serializable, Cloneable |
27 | |
{ |
28 | |
|
29 | |
public Dictionary () |
30 | |
{ |
31 | 0 | super (); |
32 | 0 | } |
33 | |
|
34 | |
private String id; |
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | |
|
40 | |
|
41 | |
public String getId () |
42 | |
{ |
43 | 0 | return id; |
44 | |
} |
45 | |
|
46 | |
|
47 | |
|
48 | |
|
49 | |
|
50 | |
|
51 | |
public void setId (String id) |
52 | |
{ |
53 | 0 | this.id = id; |
54 | 0 | } |
55 | |
|
56 | |
private String type; |
57 | |
|
58 | |
|
59 | |
|
60 | |
|
61 | |
|
62 | |
|
63 | |
public String getType () |
64 | |
{ |
65 | 0 | return type; |
66 | |
} |
67 | |
|
68 | |
|
69 | |
|
70 | |
|
71 | |
|
72 | |
|
73 | |
public void setType (String type) |
74 | |
{ |
75 | 0 | this.type = type; |
76 | 0 | } |
77 | |
|
78 | |
|
79 | |
private String state; |
80 | |
|
81 | |
|
82 | |
|
83 | |
|
84 | |
|
85 | |
|
86 | |
public String getState () |
87 | |
{ |
88 | 0 | return state; |
89 | |
} |
90 | |
|
91 | |
|
92 | |
|
93 | |
|
94 | |
|
95 | |
|
96 | |
public void setState (String state) |
97 | |
{ |
98 | 0 | this.state = state; |
99 | 0 | } |
100 | |
|
101 | |
private Dictionary parent; |
102 | |
|
103 | |
public Dictionary getParent () |
104 | |
{ |
105 | 0 | return parent; |
106 | |
} |
107 | |
|
108 | |
public void setParent (Dictionary parent) |
109 | |
{ |
110 | 0 | this.parent = parent; |
111 | 0 | } |
112 | |
|
113 | |
|
114 | |
private String subType; |
115 | |
|
116 | |
|
117 | |
|
118 | |
|
119 | |
|
120 | |
|
121 | |
public String getSubType () |
122 | |
{ |
123 | 0 | return subType; |
124 | |
} |
125 | |
|
126 | |
|
127 | |
|
128 | |
|
129 | |
|
130 | |
|
131 | |
public void setSubType (String subType) |
132 | |
{ |
133 | 0 | this.subType = subType; |
134 | 0 | } |
135 | |
|
136 | |
private String subState; |
137 | |
|
138 | |
|
139 | |
|
140 | |
|
141 | |
|
142 | |
|
143 | |
public String getSubState () |
144 | |
{ |
145 | 0 | return subState; |
146 | |
} |
147 | |
|
148 | |
|
149 | |
|
150 | |
|
151 | |
|
152 | |
|
153 | |
public void setSubState (String subState) |
154 | |
{ |
155 | 0 | this.subState = subState; |
156 | 0 | } |
157 | |
|
158 | |
private String xmlObject; |
159 | |
|
160 | |
|
161 | |
|
162 | |
|
163 | |
|
164 | |
|
165 | |
public String getXmlObject () |
166 | |
{ |
167 | 0 | return xmlObject; |
168 | |
} |
169 | |
|
170 | |
|
171 | |
|
172 | |
|
173 | |
|
174 | |
|
175 | |
public void setXmlObject (String xmlObject) |
176 | |
{ |
177 | 0 | this.xmlObject = xmlObject; |
178 | 0 | } |
179 | |
|
180 | |
private String shortName; |
181 | |
|
182 | |
|
183 | |
|
184 | |
|
185 | |
|
186 | |
|
187 | |
public String getShortName () |
188 | |
{ |
189 | 0 | return shortName; |
190 | |
} |
191 | |
|
192 | |
|
193 | |
|
194 | |
|
195 | |
|
196 | |
|
197 | |
public void setShortName (String shortName) |
198 | |
{ |
199 | 0 | this.shortName = shortName; |
200 | 0 | } |
201 | |
|
202 | |
private String primitive; |
203 | |
|
204 | |
|
205 | |
|
206 | |
|
207 | |
|
208 | |
|
209 | |
public String getPrimitive () |
210 | |
{ |
211 | 0 | return primitive; |
212 | |
} |
213 | |
|
214 | |
|
215 | |
|
216 | |
|
217 | |
|
218 | |
|
219 | |
public void setPrimitive (String primitive) |
220 | |
{ |
221 | 0 | this.primitive = primitive; |
222 | 0 | } |
223 | |
|
224 | |
private String baseConstraintDescription; |
225 | |
|
226 | |
|
227 | |
|
228 | |
|
229 | |
|
230 | |
|
231 | |
public String getBaseConstraintDescription () |
232 | |
{ |
233 | 0 | return baseConstraintDescription; |
234 | |
} |
235 | |
|
236 | |
|
237 | |
|
238 | |
|
239 | |
|
240 | |
|
241 | |
public void setBaseConstraintDescription (String baseConstraintDescription) |
242 | |
{ |
243 | 0 | this.baseConstraintDescription = baseConstraintDescription; |
244 | 0 | } |
245 | |
|
246 | |
private String name; |
247 | |
|
248 | |
|
249 | |
|
250 | |
|
251 | |
|
252 | |
|
253 | |
public String getName () |
254 | |
{ |
255 | 0 | return name; |
256 | |
} |
257 | |
|
258 | |
|
259 | |
|
260 | |
|
261 | |
|
262 | |
|
263 | |
public void setName (String name) |
264 | |
{ |
265 | 0 | this.name = name; |
266 | 0 | } |
267 | |
|
268 | |
public String desc; |
269 | |
|
270 | |
|
271 | |
|
272 | |
|
273 | |
|
274 | |
|
275 | |
public String getDesc () |
276 | |
{ |
277 | 0 | return desc; |
278 | |
} |
279 | |
|
280 | |
|
281 | |
|
282 | |
|
283 | |
|
284 | |
|
285 | |
public void setDesc (String desc) |
286 | |
{ |
287 | 0 | this.desc = desc; |
288 | 0 | } |
289 | |
|
290 | |
|
291 | |
private boolean selector; |
292 | |
|
293 | |
|
294 | |
|
295 | |
|
296 | |
|
297 | |
|
298 | |
public boolean isSelector () |
299 | |
{ |
300 | 0 | return selector; |
301 | |
} |
302 | |
|
303 | |
|
304 | |
|
305 | |
|
306 | |
|
307 | |
|
308 | |
public void setSelector (boolean selector) |
309 | |
{ |
310 | 0 | this.selector = selector; |
311 | 0 | } |
312 | |
|
313 | |
|
314 | |
private boolean dynamic; |
315 | |
|
316 | |
public boolean isDynamic () |
317 | |
{ |
318 | 0 | return dynamic; |
319 | |
} |
320 | |
|
321 | |
public void setDynamic (boolean dynamic) |
322 | |
{ |
323 | 0 | this.dynamic = dynamic; |
324 | 0 | } |
325 | |
|
326 | |
|
327 | |
private String comments; |
328 | |
|
329 | |
|
330 | |
|
331 | |
|
332 | |
|
333 | |
|
334 | |
public String getComments () |
335 | |
{ |
336 | 0 | return comments; |
337 | |
} |
338 | |
|
339 | |
|
340 | |
|
341 | |
|
342 | |
|
343 | |
|
344 | |
public void setComments (String comments) |
345 | |
{ |
346 | 0 | this.comments = comments; |
347 | 0 | } |
348 | |
|
349 | |
protected List<String> additionalConstraintIds; |
350 | |
|
351 | |
|
352 | |
|
353 | |
|
354 | |
|
355 | |
|
356 | |
public List<String> getAdditionalConstraintIds () |
357 | |
{ |
358 | 0 | return additionalConstraintIds; |
359 | |
} |
360 | |
|
361 | |
|
362 | |
|
363 | |
|
364 | |
|
365 | |
|
366 | |
public void setAdditionalConstraintIds (List<String> additionalConstraintIds) |
367 | |
{ |
368 | 0 | this.additionalConstraintIds = additionalConstraintIds; |
369 | 0 | } |
370 | |
|
371 | |
protected String additionalConstraintDescription; |
372 | |
|
373 | |
|
374 | |
|
375 | |
|
376 | |
|
377 | |
|
378 | |
public String getAdditionalConstraintDescription () |
379 | |
{ |
380 | 0 | return additionalConstraintDescription; |
381 | |
} |
382 | |
|
383 | |
|
384 | |
|
385 | |
|
386 | |
|
387 | |
|
388 | |
public void setAdditionalConstraintDescription ( |
389 | |
String additionalConstraintDescription) |
390 | |
{ |
391 | 0 | this.additionalConstraintDescription = additionalConstraintDescription; |
392 | 0 | } |
393 | |
|
394 | |
protected String combinedConstraintDescription; |
395 | |
|
396 | |
|
397 | |
|
398 | |
|
399 | |
|
400 | |
|
401 | |
public String getCombinedConstraintDescription () |
402 | |
{ |
403 | 0 | return combinedConstraintDescription; |
404 | |
} |
405 | |
|
406 | |
|
407 | |
|
408 | |
|
409 | |
|
410 | |
|
411 | |
public void setCombinedConstraintDescription ( |
412 | |
String combinedConstraintDescription) |
413 | |
{ |
414 | 0 | this.combinedConstraintDescription = combinedConstraintDescription; |
415 | 0 | } |
416 | |
|
417 | |
private Constraint inlineConstraint; |
418 | |
|
419 | |
|
420 | |
|
421 | |
|
422 | |
|
423 | |
|
424 | |
public Constraint getInlineConstraint () |
425 | |
{ |
426 | 0 | return inlineConstraint; |
427 | |
} |
428 | |
|
429 | |
|
430 | |
|
431 | |
|
432 | |
|
433 | |
|
434 | |
public void setInlineConstraint (Constraint inlineConstraint) |
435 | |
{ |
436 | 0 | this.inlineConstraint = inlineConstraint; |
437 | 0 | } |
438 | |
|
439 | |
@Override |
440 | |
public Object clone () |
441 | |
throws CloneNotSupportedException |
442 | |
{ |
443 | 0 | return super.clone (); |
444 | |
} |
445 | |
|
446 | |
} |