1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.lum.course.dto; |
17 |
|
|
18 |
|
import java.io.Serializable; |
19 |
|
import java.util.ArrayList; |
20 |
|
import java.util.List; |
21 |
|
|
22 |
|
import javax.xml.bind.annotation.XmlAccessType; |
23 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
24 |
|
import javax.xml.bind.annotation.XmlElement; |
25 |
|
|
26 |
|
import org.kuali.student.lum.lo.dto.LoCategoryInfo; |
27 |
|
import org.kuali.student.lum.lo.dto.LoInfo; |
28 |
|
|
29 |
|
|
30 |
|
|
31 |
|
|
32 |
|
|
33 |
|
|
34 |
|
|
35 |
|
|
36 |
|
|
37 |
|
|
38 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
| 0% |
Uncovered Elements: 28 (28) |
Complexity: 12 |
Complexity Density: 0.86 |
|
39 |
|
public class LoDisplayInfo implements Serializable { |
40 |
|
|
41 |
|
private static final long serialVersionUID = 1L; |
42 |
|
|
43 |
|
@XmlElement |
44 |
|
private LoInfo loInfo; |
45 |
|
|
46 |
|
@XmlElement |
47 |
|
private List<LoDisplayInfo> loDisplayInfoList; |
48 |
|
|
49 |
|
@XmlElement |
50 |
|
private String parentRelType; |
51 |
|
|
52 |
|
@XmlElement |
53 |
|
private String parentLoRelationid; |
54 |
|
|
55 |
|
@XmlElement |
56 |
|
private List<LoCategoryInfo> loCategoryInfoList; |
57 |
|
|
58 |
|
|
59 |
|
|
60 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
61 |
0
|
public LoInfo getLoInfo() {... |
62 |
0
|
return loInfo; |
63 |
|
} |
64 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
65 |
0
|
public void setLoInfo(LoInfo loInfo) {... |
66 |
0
|
this.loInfo = loInfo; |
67 |
|
} |
68 |
|
|
69 |
|
|
70 |
|
|
71 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
72 |
0
|
public List<LoDisplayInfo> getLoDisplayInfoList() {... |
73 |
0
|
if (loDisplayInfoList == null) { |
74 |
0
|
loDisplayInfoList = new ArrayList<LoDisplayInfo>(0); |
75 |
|
} |
76 |
0
|
return loDisplayInfoList; |
77 |
|
} |
78 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
79 |
0
|
public void setLoDisplayInfoList(List<LoDisplayInfo> loDisplayInfoList) {... |
80 |
0
|
this.loDisplayInfoList = loDisplayInfoList; |
81 |
|
} |
82 |
|
|
83 |
|
|
84 |
|
|
85 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
86 |
0
|
public String getParentRelType() {... |
87 |
0
|
return parentRelType; |
88 |
|
} |
89 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
90 |
0
|
public void setParentRelType(String parentRelType) {... |
91 |
0
|
this.parentRelType = parentRelType; |
92 |
|
} |
93 |
|
|
94 |
|
|
95 |
|
|
96 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
97 |
0
|
public String getParentLoRelationid() {... |
98 |
0
|
return parentLoRelationid; |
99 |
|
} |
100 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
101 |
0
|
public void setParentLoRelationid(String parentLoRelationid) {... |
102 |
0
|
this.parentLoRelationid = parentLoRelationid; |
103 |
|
} |
104 |
|
|
105 |
|
|
106 |
|
|
107 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
108 |
0
|
public List<LoCategoryInfo> getLoCategoryInfoList() {... |
109 |
0
|
if (loCategoryInfoList == null) { |
110 |
0
|
loCategoryInfoList = new ArrayList<LoCategoryInfo>(0); |
111 |
|
} |
112 |
0
|
return loCategoryInfoList; |
113 |
|
} |
114 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
115 |
0
|
public void setLoCategoryInfoList(List<LoCategoryInfo> loCategoryInfoList) {... |
116 |
0
|
this.loCategoryInfoList = loCategoryInfoList; |
117 |
|
} |
118 |
|
} |