1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
|
23 |
|
|
24 |
|
package org.kuali.student.common.dictionary.old.dto; |
25 |
|
|
26 |
|
import java.io.Serializable; |
27 |
|
|
28 |
|
import javax.xml.bind.annotation.XmlAccessType; |
29 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
30 |
|
import javax.xml.bind.annotation.XmlAttribute; |
31 |
|
import javax.xml.bind.annotation.XmlElement; |
32 |
|
|
33 |
|
|
34 |
|
|
35 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
| 0% |
Uncovered Elements: 12 (12) |
Complexity: 6 |
Complexity Density: 1 |
|
36 |
|
public class ValidCharsConstraint implements Serializable{ |
37 |
|
|
38 |
|
private static final long serialVersionUID = 1L; |
39 |
|
|
40 |
|
@XmlAttribute |
41 |
|
protected String fields; |
42 |
|
|
43 |
|
@XmlAttribute |
44 |
|
protected String separator; |
45 |
|
|
46 |
|
@XmlElement |
47 |
|
protected String value; |
48 |
|
|
49 |
|
|
50 |
|
@return |
51 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
52 |
0
|
public String getFields() {... |
53 |
0
|
return fields; |
54 |
|
} |
55 |
|
|
56 |
|
|
57 |
|
@param |
58 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
59 |
0
|
public void setFields(String fields) {... |
60 |
0
|
this.fields = fields; |
61 |
|
} |
62 |
|
|
63 |
|
|
64 |
|
@return |
65 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
66 |
0
|
public String getSeparator() {... |
67 |
0
|
return separator; |
68 |
|
} |
69 |
|
|
70 |
|
|
71 |
|
@param |
72 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
73 |
0
|
public void setSeparator(String separator) {... |
74 |
0
|
this.separator = separator; |
75 |
|
} |
76 |
|
|
77 |
|
|
78 |
|
@return |
79 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
80 |
0
|
public String getValue() {... |
81 |
0
|
return value; |
82 |
|
} |
83 |
|
|
84 |
|
|
85 |
|
@param |
86 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
87 |
0
|
public void setValue(String value) {... |
88 |
0
|
this.value = value; |
89 |
|
} |
90 |
|
} |