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 |
|
|
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: 24 (24) |
Complexity: 12 |
Complexity Density: 1 |
|
37 |
|
public class CourseVariationInfo implements Serializable, Idable { |
38 |
|
|
39 |
|
private static final long serialVersionUID = 1L; |
40 |
|
|
41 |
|
@XmlElement |
42 |
|
private String variationTitle; |
43 |
|
|
44 |
|
@XmlElement |
45 |
|
private String subjectArea; |
46 |
|
|
47 |
|
@XmlElement |
48 |
|
private String courseNumberSuffix; |
49 |
|
|
50 |
|
@XmlElement |
51 |
|
private String variationCode; |
52 |
|
|
53 |
|
@XmlAttribute |
54 |
|
private String type; |
55 |
|
|
56 |
|
@XmlAttribute |
57 |
|
private String id; |
58 |
|
|
59 |
|
|
60 |
|
|
61 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
62 |
0
|
public String getVariationTitle() {... |
63 |
0
|
return variationTitle; |
64 |
|
} |
65 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
66 |
0
|
public void setVariationTitle(String variationTitle) {... |
67 |
0
|
this.variationTitle = variationTitle; |
68 |
|
} |
69 |
|
|
70 |
|
|
71 |
|
|
72 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
73 |
0
|
public String getSubjectArea() {... |
74 |
0
|
return subjectArea; |
75 |
|
} |
76 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
77 |
0
|
public void setSubjectArea(String subjectArea) {... |
78 |
0
|
this.subjectArea = subjectArea; |
79 |
|
} |
80 |
|
|
81 |
|
|
82 |
|
|
83 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
84 |
0
|
public String getCourseNumberSuffix() {... |
85 |
0
|
return courseNumberSuffix; |
86 |
|
} |
87 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
88 |
0
|
public void setCourseNumberSuffix(String courseNumberSuffix) {... |
89 |
0
|
this.courseNumberSuffix = courseNumberSuffix; |
90 |
|
} |
91 |
|
|
92 |
|
|
93 |
|
|
94 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
95 |
0
|
public String getVariationCode() {... |
96 |
0
|
return variationCode; |
97 |
|
} |
98 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
99 |
0
|
public void setVariationCode(String variationCode) {... |
100 |
0
|
this.variationCode = variationCode; |
101 |
|
} |
102 |
|
|
103 |
|
|
104 |
|
|
105 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
106 |
0
|
public String getType() {... |
107 |
0
|
return type; |
108 |
|
} |
109 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
110 |
0
|
public void setType(String type) {... |
111 |
0
|
this.type = type; |
112 |
|
} |
113 |
|
|
114 |
|
|
115 |
|
|
116 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
117 |
0
|
public String getId() {... |
118 |
0
|
return id; |
119 |
|
} |
120 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
121 |
0
|
public void setId(String id) {... |
122 |
0
|
this.id = id; |
123 |
|
} |
124 |
|
} |