Clover Coverage Report - Kuali Student 1.2-M2-SNAPSHOT (Aggregated)
Coverage timestamp: Fri Apr 22 2011 04:03:20 EST
../../../../../../img/srcFileCovDistChart8.png 36% of files have more coverage
4   36   4   1
0   28   1   4
4     1  
1    
 
  CluSetJoinVersionIndClu       Line # 13 4 0% 4 2 75% 0.75
 
  (57)
 
1    package org.kuali.student.lum.lu.entity;
2   
3    import javax.persistence.Column;
4    import javax.persistence.Entity;
5    import javax.persistence.JoinColumn;
6    import javax.persistence.ManyToOne;
7    import javax.persistence.Table;
8   
9    import org.kuali.student.common.entity.BaseEntity;
10   
11    @Entity
12    @Table(name = "KSLU_CLU_SET_JN_CLU")
 
13    public class CluSetJoinVersionIndClu extends BaseEntity {
14    @ManyToOne
15    @JoinColumn(name = "CLU_SET_ID")
16    private CluSet cluSet;
17   
18    @Column(name = "CLU_VER_IND_ID")
19    private String cluVersionIndId;
20   
 
21  0 toggle public CluSet getCluSet() {
22  0 return cluSet;
23    }
24   
 
25  23 toggle public void setCluSet(CluSet cluSet) {
26  23 this.cluSet = cluSet;
27    }
28   
 
29  245 toggle public String getCluVersionIndId() {
30  245 return cluVersionIndId;
31    }
32   
 
33  23 toggle public void setCluVersionIndId(String cluVersionIndId) {
34  23 this.cluVersionIndId = cluVersionIndId;
35    }
36    }