Clover Coverage Report - Kuali Student 1.2-M4-SNAPSHOT (Aggregated)
Coverage timestamp: Wed Jul 20 2011 11:14:35 EDT
../../../../../../img/srcFileCovDistChart9.png 24% of files have more coverage
6   49   6   1
0   37   1   6
6     1  
1    
 
  CluPublicationVariant       Line # 14 6 0% 6 2 83.3% 0.8333333
 
  (14)
 
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    import javax.persistence.UniqueConstraint;
9   
10    import org.kuali.student.common.entity.BaseEntity;
11   
12    @Entity
13    @Table(name = "KSLU_CLU_PUBL_VARI", uniqueConstraints={@UniqueConstraint(columnNames={"VARI_KEY", "OWNER"})})
 
14    public class CluPublicationVariant extends BaseEntity{
15   
16    @Column(name="VARI_KEY")
17    private String key;
18   
19    @Column(name="VARI_VALUE")
20    private String value;
21   
22    @ManyToOne
23    @JoinColumn(name = "OWNER")
24    private CluPublication owner;
25   
 
26  193 toggle public String getKey() {
27  193 return key;
28    }
29   
 
30  32 toggle public void setKey(String key) {
31  32 this.key = key;
32    }
33   
 
34  172 toggle public String getValue() {
35  172 return value;
36    }
37   
 
38  51 toggle public void setValue(String value) {
39  51 this.value = value;
40    }
41   
 
42  0 toggle public CluPublication getOwner() {
43  0 return owner;
44    }
45   
 
46  30 toggle public void setOwner(CluPublication owner) {
47  30 this.owner = owner;
48    }
49    }