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
5   26   3   1.67
0   16   0.6   3
3     1  
1    
 
  TableSection       Line # 12 5 0% 3 8 0% 0.0
 
No Tests
 
1    package org.kuali.student.common.ui.client.configurable.mvc.sections;
2   
3    import org.kuali.student.common.ui.client.configurable.mvc.SectionTitle;
4    import org.kuali.student.common.ui.client.widgets.field.layout.layouts.TableFieldLayout;
5   
6    /**
7    * Section that uses a TableFieldLayout.
8    *
9    * @author Kuali Student Team
10    * @see TableFieldLayout
11    */
 
12    public class TableSection extends BaseSection{
 
13  0 toggle public TableSection(){
14  0 init();
15    }
16   
 
17  0 toggle public TableSection(SectionTitle title){
18  0 init();
19  0 layout.setLayoutTitle(title);
20    }
21   
 
22  0 toggle private void init() {
23  0 layout = new TableFieldLayout();
24  0 this.add(layout);
25    }
26    }