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