1 |
|
package org.kuali.student.common.dictionary.dto; |
2 |
|
|
3 |
|
import javax.xml.bind.annotation.XmlAccessType; |
4 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
5 |
|
import javax.xml.bind.annotation.XmlElement; |
6 |
|
|
7 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
8 |
|
public class ValidCharsConstraint extends BaseConstraint { |
9 |
|
|
10 |
|
|
11 |
|
@XmlElement |
12 |
|
protected String value; |
13 |
|
|
14 |
|
|
15 |
|
@return |
16 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
17 |
0
|
public String getValue() {... |
18 |
0
|
return value; |
19 |
|
} |
20 |
|
|
21 |
|
|
22 |
|
@param |
23 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
24 |
0
|
public void setValue(String value) {... |
25 |
0
|
this.value = value; |
26 |
|
} |
27 |
|
|
28 |
|
|
29 |
|
} |