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 |
|
import org.kuali.student.common.validation.dto.ValidationResultInfo.ErrorLevel; |
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
| 50% |
Uncovered Elements: 2 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
12 |
|
public class LookupConstraint extends CommonLookup{ |
13 |
|
|
14 |
|
private static final long serialVersionUID = 1L; |
15 |
|
|
16 |
|
@XmlElement |
17 |
|
protected ErrorLevel errorLevel = ErrorLevel.ERROR; |
18 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
19 |
8
|
public ErrorLevel getErrorLevel() {... |
20 |
8
|
return errorLevel; |
21 |
|
} |
22 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
23 |
0
|
public void setErrorLevel(ErrorLevel errorLevel) {... |
24 |
0
|
this.errorLevel = errorLevel; |
25 |
|
} |
26 |
|
|
27 |
|
} |