Clover Coverage Report - Kuali Student 1.2-M6-SNAPSHOT (Aggregated)
Coverage timestamp: Mon Sep 12 2011 05:03:53 EDT
../../../../../../../img/srcFileCovDistChart0.png 42% of files have more coverage
12   70   12   1
0   51   1   6
12     1  
2    
 
  LoDisplayInfoHelper       Line # 9 10 0% 10 20 0% 0.0
  LoDisplayInfoHelper.Properties       Line # 11 2 0% 2 4 0% 0.0
 
No Tests
 
1    package org.kuali.student.lum.common.client.lo;
2   
3    import org.kuali.student.common.assembly.data.Data;
4    import org.kuali.student.common.assembly.helper.PropertyEnum;
5   
6    /**
7    * @author Igor
8    */
 
9    public class LoDisplayInfoHelper {
10    private Data data;
 
11    public enum Properties implements PropertyEnum
12    {
13    LO_INFO ("loInfo"),
14    LO_DISPLAY_INFO_LIST ("loDisplayInfoList"),
15    LO_CATEGORY_INFO_LIST ("loCategoryInfoList");
16   
17    private final String key;
18   
 
19  0 toggle private Properties (final String key)
20    {
21  0 this.key = key;
22    }
23   
 
24  0 toggle @Override
25    public String getKey ()
26    {
27  0 return this.key;
28    }
29    }
30   
 
31  0 toggle public LoDisplayInfoHelper() {
32  0 data = new Data();
33    }
34   
 
35  0 toggle public LoDisplayInfoHelper(Data data) {
36  0 this.data = data;
37    }
38   
 
39  0 toggle public Data getData() {
40  0 return data;
41    }
42   
 
43  0 toggle public void setData(Data data) {
44  0 this.data = data;
45    }
46   
 
47  0 toggle public void setLoInfo(Data loInfoData) {
48  0 HelperUtil.setDataField(LoDisplayInfoHelper.Properties.LO_INFO, data, loInfoData);
49    }
50   
 
51  0 toggle public Data getLoInfo() {
52  0 return HelperUtil.getDataField(LoDisplayInfoHelper.Properties.LO_INFO, data);
53    }
54   
 
55  0 toggle public void setDisplayInfoList(Data displayInfoListData) {
56  0 HelperUtil.setDataField(LoDisplayInfoHelper.Properties.LO_DISPLAY_INFO_LIST, data, displayInfoListData);
57    }
58   
 
59  0 toggle public Data getDisplayInfoList() {
60  0 return HelperUtil.getDataField(LoDisplayInfoHelper.Properties.LO_DISPLAY_INFO_LIST, data);
61    }
62   
 
63  0 toggle public void setCategoryInfoList(Data categoryInfoListData) {
64  0 HelperUtil.setDataField(LoDisplayInfoHelper.Properties.LO_CATEGORY_INFO_LIST, data, categoryInfoListData);
65    }
66   
 
67  0 toggle public Data getCategoryInfoList() {
68  0 return HelperUtil.getDataField(LoDisplayInfoHelper.Properties.LO_CATEGORY_INFO_LIST, data);
69    }
70    }