Clover Coverage Report - Kuali Student 1.2-M4-SNAPSHOT (Aggregated)
Coverage timestamp: Wed Jul 20 2011 11:14:35 EDT
../../../../../../../img/srcFileCovDistChart0.png 41% of files have more coverage
4   16   2   4
2   14   0.5   1
1     2  
1    
 
  BooleanDisplayLabel       Line # 5 4 0% 2 7 0% 0.0
 
No Tests
 
1    package org.kuali.student.common.ui.client.widgets;
2   
3    import org.kuali.student.common.ui.client.application.Application;
4   
 
5    public class BooleanDisplayLabel extends KSLabel{
 
6  0 toggle @Override
7    public void setText(String text) {
8  0 if(text.equalsIgnoreCase("true")){
9  0 text = Application.getApplicationContext().getMessage("booleanTrue");
10    }
11    else{
12  0 text = Application.getApplicationContext().getMessage("booleanFalse");
13    }
14  0 super.setText(text);
15    }
16    }