Clover Coverage Report - Kuali Student 1.2.1-SNAPSHOT (Aggregated)
Coverage timestamp: Wed Nov 2 2011 04:03:58 EST
../../../../../../../img/srcFileCovDistChart0.png 42% of files have more coverage
13   55   13   1
0   51   1   13
13     1  
1    
 
  CluInformation       Line # 6 13 0% 13 26 0% 0.0
 
No Tests
 
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  0 toggle public String getCode() {
16  0 return code;
17    }
 
18  0 toggle public void setCode(String code) {
19  0 this.code = code;
20    }
 
21  0 toggle public String getTitle() {
22  0 return title;
23    }
 
24  0 toggle public void setTitle(String title) {
25  0 this.title = title;
26    }
 
27  0 toggle public String getCredits() {
28  0 return credits;
29    }
 
30  0 toggle public void setCredits(String credits) {
31  0 this.credits = credits;
32    }
 
33  0 toggle public void setVerIndependentId(String verIndependentId) {
34  0 this.verIndependentId = verIndependentId;
35    }
 
36  0 toggle public String getVerIndependentId() {
37  0 return verIndependentId;
38    }
 
39  0 toggle public String getType() {
40  0 return type;
41    }
 
42  0 toggle public void setType(String type) {
43  0 this.type = type;
44    }
 
45  0 toggle public String getParentCluId() {
46  0 return parentCluId;
47    }
 
48  0 toggle public void setParentCluId(String parentCluId) {
49  0 this.parentCluId = parentCluId;
50    }
 
51  0 toggle public int compareTo(CluInformation clu)
52    {
53  0 return this.code.compareTo(clu.getCode());
54    }
55    }