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: 53 (53) |
Complexity: 27 |
Complexity Density: 1.04 |
|
25 |
|
public class Field implements Serializable { |
26 |
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
27 |
0
|
public Field() {... |
28 |
|
} |
29 |
|
private String id; |
30 |
|
|
31 |
|
|
32 |
|
|
33 |
|
|
34 |
|
@return |
35 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
36 |
0
|
public String getId() {... |
37 |
0
|
return id; |
38 |
|
} |
39 |
|
|
40 |
|
|
41 |
|
|
42 |
|
|
43 |
|
@param |
44 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
45 |
0
|
public void setId(String id) {... |
46 |
0
|
this.id = id; |
47 |
|
} |
48 |
|
private String xmlObject; |
49 |
|
|
50 |
|
|
51 |
|
|
52 |
|
|
53 |
|
@return |
54 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
55 |
0
|
public String getXmlObject() {... |
56 |
0
|
return xmlObject; |
57 |
|
} |
58 |
|
|
59 |
|
|
60 |
|
|
61 |
|
|
62 |
|
@param |
63 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
64 |
0
|
public void setXmlObject(String xmlObject) {... |
65 |
0
|
this.xmlObject = xmlObject; |
66 |
|
} |
67 |
|
private String shortName; |
68 |
|
|
69 |
|
|
70 |
|
|
71 |
|
|
72 |
|
@return |
73 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
74 |
0
|
public String getShortName() {... |
75 |
0
|
return shortName; |
76 |
|
} |
77 |
|
|
78 |
|
|
79 |
|
|
80 |
|
|
81 |
|
@param |
82 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
83 |
0
|
public void setShortName(String shortName) {... |
84 |
0
|
this.shortName = shortName; |
85 |
|
} |
86 |
|
private String name; |
87 |
|
|
88 |
|
|
89 |
|
|
90 |
|
|
91 |
|
@return |
92 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
93 |
0
|
public String getName() {... |
94 |
0
|
return name; |
95 |
|
} |
96 |
|
|
97 |
|
|
98 |
|
|
99 |
|
|
100 |
|
@param |
101 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
102 |
0
|
public void setName(String name) {... |
103 |
0
|
this.name = name; |
104 |
|
} |
105 |
|
private String xmlType; |
106 |
|
|
107 |
|
|
108 |
|
|
109 |
|
|
110 |
|
@return |
111 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
112 |
0
|
public String getXmlType() {... |
113 |
0
|
return xmlType; |
114 |
|
} |
115 |
|
|
116 |
|
|
117 |
|
|
118 |
|
|
119 |
|
@param |
120 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
121 |
0
|
public void setXmlType(String xmlType) {... |
122 |
0
|
this.xmlType = xmlType; |
123 |
|
} |
124 |
|
private String primitive; |
125 |
|
|
126 |
|
|
127 |
|
|
128 |
|
|
129 |
|
@return |
130 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
131 |
0
|
public String getPrimitive() {... |
132 |
0
|
return primitive; |
133 |
|
} |
134 |
|
|
135 |
|
|
136 |
|
|
137 |
|
|
138 |
|
@param |
139 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
140 |
0
|
public void setPrimitive(String primitive) {... |
141 |
0
|
this.primitive = primitive; |
142 |
|
} |
143 |
|
private String desc; |
144 |
|
|
145 |
|
|
146 |
|
|
147 |
|
|
148 |
|
@return |
149 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
150 |
0
|
public String getDesc() {... |
151 |
0
|
return desc; |
152 |
|
} |
153 |
|
|
154 |
|
|
155 |
|
|
156 |
|
|
157 |
|
@param |
158 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
159 |
0
|
public void setDesc(String desc) {... |
160 |
0
|
this.desc = desc; |
161 |
|
} |
162 |
|
private List<String> constraintIds; |
163 |
|
|
164 |
|
|
165 |
|
|
166 |
|
|
167 |
|
@return |
168 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
169 |
0
|
public List<String> getConstraintIds() {... |
170 |
0
|
return constraintIds; |
171 |
|
} |
172 |
|
|
173 |
|
|
174 |
|
|
175 |
|
|
176 |
|
@param |
177 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
178 |
0
|
public void setConstraintIds(List<String> constraintIds) {... |
179 |
0
|
this.constraintIds = constraintIds; |
180 |
|
} |
181 |
|
private String constraintDescription; |
182 |
|
|
183 |
|
|
184 |
|
|
185 |
|
|
186 |
|
@return |
187 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
188 |
0
|
public String getConstraintDescription() {... |
189 |
0
|
return constraintDescription; |
190 |
|
} |
191 |
|
|
192 |
|
|
193 |
|
|
194 |
|
|
195 |
|
@param |
196 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
197 |
0
|
public void setConstraintDescription(String constraintDescription) {... |
198 |
0
|
this.constraintDescription = constraintDescription; |
199 |
|
} |
200 |
|
private boolean dynamic; |
201 |
|
|
202 |
|
|
203 |
|
|
204 |
|
|
205 |
|
@return |
206 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
207 |
0
|
public boolean isDynamic() {... |
208 |
0
|
return dynamic; |
209 |
|
} |
210 |
|
|
211 |
|
|
212 |
|
|
213 |
|
|
214 |
|
@param |
215 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
216 |
0
|
public void setDynamic(boolean dynamic) {... |
217 |
0
|
this.dynamic = dynamic; |
218 |
|
} |
219 |
|
private boolean selector; |
220 |
|
|
221 |
|
|
222 |
|
|
223 |
|
|
224 |
|
@return |
225 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
226 |
0
|
public boolean isSelector() {... |
227 |
0
|
return selector; |
228 |
|
} |
229 |
|
|
230 |
|
|
231 |
|
|
232 |
|
|
233 |
|
@param |
234 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
235 |
0
|
public void setSelector(boolean selector) {... |
236 |
0
|
this.selector = selector; |
237 |
|
} |
238 |
|
private Constraint inlineConstraint; |
239 |
|
|
240 |
|
|
241 |
|
|
242 |
|
|
243 |
|
@return |
244 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
245 |
0
|
public Constraint getInlineConstraint() {... |
246 |
0
|
return inlineConstraint; |
247 |
|
} |
248 |
|
|
249 |
|
|
250 |
|
|
251 |
|
|
252 |
|
@param |
253 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
254 |
0
|
public void setInlineConstraint(Constraint inlineConstraint) {... |
255 |
0
|
this.inlineConstraint = inlineConstraint; |
256 |
|
} |
257 |
|
private String comments; |
258 |
|
|
259 |
|
|
260 |
|
|
261 |
|
|
262 |
|
@return |
263 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
264 |
0
|
public String getComments() {... |
265 |
0
|
return comments; |
266 |
|
} |
267 |
|
|
268 |
|
|
269 |
|
|
270 |
|
|
271 |
|
@param |
272 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
273 |
0
|
public void setComments(String comments) {... |
274 |
0
|
this.comments = comments; |
275 |
|
} |
276 |
|
} |