Clover Coverage Report - KS Common 1.2-M5-SNAPSHOT (Aggregated)
Coverage timestamp: Mon Aug 29 2011 05:59:08 EDT
../../../../../../../img/srcFileCovDistChart8.png 14% of files have more coverage
41   140   39   1.71
16   109   0.95   24
24     1.62  
1    
 
  ExportElement       Line # 6 41 0% 39 17 79% 0.79012346
 
  (2)
 
1    package org.kuali.student.common.ui.client.util;
2   
3    import java.io.Serializable;
4    import java.util.List;
5   
 
6    public class ExportElement implements Serializable {
7   
8    private static final long serialVersionUID = 1L;
9    private String fieldLabel;
10    private boolean isMandatory;
11   
12    private String fieldValue;
13    private String fieldValue2;
14    private String viewName;
15   
 
16  34 toggle public ExportElement() {
17  34 super();
18    }
19   
 
20  0 toggle public ExportElement(String viewName, String sectionName) {
21  0 super();
22  0 this.viewName = viewName;
23  0 this.sectionName = sectionName;
24    }
25   
26    private String sectionName;
27    private List<ExportElement> subset;
28   
 
29  0 toggle public String getViewName() {
30  0 return viewName;
31    }
32   
 
33  0 toggle public void setViewName(String viewName) {
34  0 this.viewName = viewName;
35    }
36   
 
37  84 toggle public String getSectionName() {
38  84 return sectionName;
39    }
40   
 
41  18 toggle public void setSectionName(String sectionName) {
42  18 this.sectionName = sectionName;
43    }
44   
 
45  88 toggle public String getFieldLabel() {
46  88 return fieldLabel;
47    }
48   
 
49  22 toggle public void setFieldLabel(String fieldLabel) {
50  22 this.fieldLabel = fieldLabel;
51    }
52   
 
53  96 toggle public String getFieldValue() {
54  96 return this.fieldValue;
55    }
56   
 
57  25 toggle public void setFieldValue(String fieldValue) {
58  25 this.fieldValue = fieldValue;
59  25 if (this.fieldValue != null && this.fieldValue.equals("")) {
60  1 System.out.println("Stop gou hier");
61    }
62    }
63   
 
64  48 toggle public boolean isSub() {
65  48 return subset != null;
66    }
67   
 
68  48 toggle public List<ExportElement> getSubset() {
69  48 return subset;
70    }
71   
 
72  7 toggle public void setSubset(List<ExportElement> subset) {
73  7 if (subset != null && subset.size() > 0) {
74  7 this.subset = subset;
75    }
76    }
77   
 
78  48 toggle public boolean isMandatory() {
79  48 return isMandatory;
80    }
81   
 
82  4 toggle public void setMandatory(boolean isMandatory) {
83  4 this.isMandatory = isMandatory;
84    }
85   
 
86  18 toggle public String getFieldValue2() {
87  18 return fieldValue2;
88    }
89   
 
90  14 toggle public void setFieldValue2(String fieldValue2) {
91  14 this.fieldValue2 = fieldValue2;
92    }
93   
 
94  48 toggle public String getKey() {
95  48 if (this.getFieldLabel() != null) {
96  40 return this.getFieldLabel();
97    }
98  8 return "";
99    }
100   
 
101  42 toggle public String getValue() {
102  42 if (this.getFieldValue() != null) {
103  34 return getFieldValue();
104    }
105  8 return "";
106    }
107   
 
108  11 toggle public String getProposalValue() {
109  11 if (this.getFieldValue() != null) {
110  9 return getFieldValue();
111    }
112  2 return "";
113    }
114   
 
115  11 toggle public String getOriginalValue() {
116  11 if (this.getFieldValue2() != null) {
117  7 return this.getFieldValue2();
118    }
119  4 return "";
120    }
121   
 
122  0 toggle public boolean isDataEmpty() {
123  0 if ((this.fieldLabel == null) && (this.fieldValue == null) && (this.fieldValue2 == null)) {
124  0 return true;
125    }
126  0 return false;
127    }
128   
 
129  111 toggle public boolean isEmpty() {
130  111 if ((this.fieldLabel == null) && (this.fieldValue == null) && (this.fieldValue2 == null) && (this.subset == null)) {
131  5 return true;
132    }
133  106 return false;
134    }
135   
 
136  0 toggle public String toString() {
137  0 return this.sectionName + " - " + this.viewName + " - " + this.getFieldLabel() + " - " + this.getFieldValue() + " - " + this.getFieldValue2();
138    }
139   
140    }