Clover Coverage Report - KS LUM 1.2-M6-SNAPSHOT (Aggregated)
Coverage timestamp: Sun Sep 11 2011 07:02:50 EDT
../../../../../../img/srcFileCovDistChart10.png 0% of files have more coverage
2   25   2   1
0   18   1   2
2     1  
1    
 
  CluFeeAmount       Line # 12 2 0% 2 0 100% 1.0
 
  (16)
 
1    package org.kuali.student.lum.lu.entity;
2   
3    import javax.persistence.Embedded;
4    import javax.persistence.Entity;
5    import javax.persistence.Table;
6   
7    import org.kuali.student.common.entity.BaseEntity;
8    import org.kuali.student.common.entity.CurrencyAmount;
9   
10    @Entity
11    @Table(name = "KSLU_CLU_FEE_AMOUNT")
 
12    public class CluFeeAmount extends BaseEntity{
13   
14    @Embedded
15    private CurrencyAmount currencyAmount;
16   
 
17  313 toggle public CurrencyAmount getCurrencyAmount() {
18  313 return currencyAmount;
19    }
20   
 
21  136 toggle public void setCurrencyAmount(CurrencyAmount currencyAmount) {
22  136 this.currencyAmount = currencyAmount;
23    }
24   
25    }