1 | |
package org.kuali.student.lum.common.client.widgets; |
2 | |
|
3 | |
|
4 | |
import java.io.Serializable; |
5 | |
|
6 | 0 | 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 | |
|
15 | |
public String getCode() { |
16 | 0 | return code; |
17 | |
} |
18 | |
public void setCode(String code) { |
19 | 0 | this.code = code; |
20 | 0 | } |
21 | |
public String getTitle() { |
22 | 0 | return title; |
23 | |
} |
24 | |
public void setTitle(String title) { |
25 | 0 | this.title = title; |
26 | 0 | } |
27 | |
public String getCredits() { |
28 | 0 | return credits; |
29 | |
} |
30 | |
public void setCredits(String credits) { |
31 | 0 | this.credits = credits; |
32 | 0 | } |
33 | |
public void setVerIndependentId(String verIndependentId) { |
34 | 0 | this.verIndependentId = verIndependentId; |
35 | 0 | } |
36 | |
public String getVerIndependentId() { |
37 | 0 | return verIndependentId; |
38 | |
} |
39 | |
public String getType() { |
40 | 0 | return type; |
41 | |
} |
42 | |
public void setType(String type) { |
43 | 0 | this.type = type; |
44 | 0 | } |
45 | |
public String getParentCluId() { |
46 | 0 | return parentCluId; |
47 | |
} |
48 | |
public void setParentCluId(String parentCluId) { |
49 | 0 | this.parentCluId = parentCluId; |
50 | 0 | } |
51 | |
public int compareTo(CluInformation clu) |
52 | |
{ |
53 | 0 | return this.code.compareTo(clu.getCode()); |
54 | |
} |
55 | |
} |