1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.lum.lu.dto; |
17 |
|
|
18 |
|
import java.io.Serializable; |
19 |
|
|
20 |
|
import javax.xml.bind.annotation.XmlAccessType; |
21 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
22 |
|
import javax.xml.bind.annotation.XmlAttribute; |
23 |
|
import javax.xml.bind.annotation.XmlElement; |
24 |
|
|
25 |
|
import org.kuali.student.common.dto.Idable; |
26 |
|
|
27 |
|
|
28 |
|
|
29 |
|
|
30 |
|
|
31 |
|
|
32 |
|
|
33 |
|
|
34 |
|
|
35 |
|
|
36 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 4 |
Complexity Density: 1 |
|
37 |
|
public class FieldInfo implements Serializable, Idable { |
38 |
|
|
39 |
|
private static final long serialVersionUID = 1L; |
40 |
|
|
41 |
|
@XmlElement |
42 |
|
private String value; |
43 |
|
|
44 |
|
@XmlAttribute(name="key") |
45 |
|
private String id; |
46 |
|
|
47 |
|
|
48 |
|
|
49 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
50 |
0
|
public String getValue() {... |
51 |
0
|
return value; |
52 |
|
} |
53 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
54 |
0
|
public void setValue(String value) {... |
55 |
0
|
this.value = value; |
56 |
|
} |
57 |
|
|
58 |
|
|
59 |
|
|
60 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
61 |
0
|
public String getId() {... |
62 |
0
|
return id; |
63 |
|
} |
64 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
65 |
0
|
public void setId(String id) {... |
66 |
0
|
this.id = id; |
67 |
|
} |
68 |
|
} |