Clover Coverage Report - Kuali Student 1.2-M5-SNAPSHOT (Aggregated)
Coverage timestamp: Mon Aug 29 2011 05:04:27 EDT
../../../../../../img/srcFileCovDistChart0.png 42% of files have more coverage
6   45   6   1
0   29   1   6
6     1  
1    
 
  CluFeeAmount       Line # 7 6 0% 6 12 0% 0.0
 
No Tests
 
1    package org.kuali.student.lum.lu.bo;
2   
3    import javax.persistence.Column;
4   
5    import org.kuali.student.core.bo.KsBusinessObjectBase;
6   
 
7    public class CluFeeAmount extends KsBusinessObjectBase {
8   
9    private static final long serialVersionUID = -6424787945578569434L;
10   
11   
12    private String cluFeeRecordId;
13   
14    @Column(name="CURRENCY_TYPE")
15    private String currencyTypeKey;
16   
17    @Column(name="CURRENCY_QUANT")
18    private Integer currencyQuantity;
19   
20   
 
21  0 toggle public String getCluFeeRecordId() {
22  0 return cluFeeRecordId;
23    }
24   
 
25  0 toggle public void setCluFeeRecordId(String cluFeeRecordId) {
26  0 this.cluFeeRecordId = cluFeeRecordId;
27    }
28   
 
29  0 toggle public String getCurrencyTypeKey() {
30  0 return currencyTypeKey;
31    }
32   
 
33  0 toggle public void setCurrencyTypeKey(String currencyTypeKey) {
34  0 this.currencyTypeKey = currencyTypeKey;
35    }
36   
 
37  0 toggle public Integer getCurrencyQuantity() {
38  0 return currencyQuantity;
39    }
40   
 
41  0 toggle public void setCurrencyQuantity(Integer currencyQuantity) {
42  0 this.currencyQuantity = currencyQuantity;
43    }
44   
45    }