Clover Coverage Report - Kuali Student 1.1.0-M10-SNAPSHOT (Aggregated)
Coverage timestamp: Fri Dec 17 2010 05:04:51 EST
../../../../../../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
 
  (15)
 
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.core.entity.BaseEntity;
8    import org.kuali.student.core.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  305 toggle public CurrencyAmount getCurrencyAmount() {
18  305 return currencyAmount;
19    }
20   
 
21  132 toggle public void setCurrencyAmount(CurrencyAmount currencyAmount) {
22  132 this.currencyAmount = currencyAmount;
23    }
24   
25    }