| 1 |
|
package org.kuali.student.core.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) |
|
|
|
| 100% |
Uncovered Elements: 0 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
| 8 |
|
public class RequiredConstraint { |
| 9 |
|
@XmlElement |
| 10 |
|
protected String fieldPath; |
| 11 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 12 |
3
|
public String getFieldPath() {... |
| 13 |
3
|
return fieldPath; |
| 14 |
|
} |
| 15 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 16 |
12
|
public void setFieldPath(String fieldPath) {... |
| 17 |
12
|
this.fieldPath = fieldPath; |
| 18 |
|
} |
| 19 |
|
} |