View Javadoc

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