1 |
|
package org.kuali.student.lum.common.client.widgets; |
2 |
|
|
3 |
|
|
4 |
|
import java.io.Serializable; |
5 |
|
|
|
|
| 0% |
Uncovered Elements: 26 (26) |
Complexity: 13 |
Complexity Density: 1 |
|
6 |
|
public class CluInformation implements Serializable, Comparable<CluInformation> { |
7 |
|
private static final long serialVersionUID = 1123124L; |
8 |
|
private String verIndependentId; |
9 |
|
private String code; |
10 |
|
private String title; |
11 |
|
private String credits; |
12 |
|
private String type; |
13 |
|
private String parentCluId; |
14 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
15 |
0
|
public String getCode() {... |
16 |
0
|
return code; |
17 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
18 |
0
|
public void setCode(String code) {... |
19 |
0
|
this.code = code; |
20 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
21 |
0
|
public String getTitle() {... |
22 |
0
|
return title; |
23 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
24 |
0
|
public void setTitle(String title) {... |
25 |
0
|
this.title = title; |
26 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
27 |
0
|
public String getCredits() {... |
28 |
0
|
return credits; |
29 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
30 |
0
|
public void setCredits(String credits) {... |
31 |
0
|
this.credits = credits; |
32 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
33 |
0
|
public void setVerIndependentId(String verIndependentId) {... |
34 |
0
|
this.verIndependentId = verIndependentId; |
35 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
36 |
0
|
public String getVerIndependentId() {... |
37 |
0
|
return verIndependentId; |
38 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
39 |
0
|
public String getType() {... |
40 |
0
|
return type; |
41 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
42 |
0
|
public void setType(String type) {... |
43 |
0
|
this.type = type; |
44 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
45 |
0
|
public String getParentCluId() {... |
46 |
0
|
return parentCluId; |
47 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
48 |
0
|
public void setParentCluId(String parentCluId) {... |
49 |
0
|
this.parentCluId = parentCluId; |
50 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
51 |
0
|
public int compareTo(CluInformation clu)... |
52 |
|
{ |
53 |
0
|
return this.code.compareTo(clu.getCode()); |
54 |
|
} |
55 |
|
} |