Coverage Report - org.kuali.student.common.ui.client.configurable.mvc.sections.TableSection
 
Classes in this File Line Coverage Branch Coverage Complexity
TableSection
0%
0/10
N/A
1
 
 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
         public TableSection(){
 14  0
                 init();
 15  0
         }
 16  
 
 17  0
         public TableSection(SectionTitle title){
 18  0
                 init();
 19  0
                 layout.setLayoutTitle(title);
 20  0
         }
 21  
 
 22  
         private void init() {
 23  0
                 layout = new TableFieldLayout();
 24  0
                 this.add(layout);
 25  0
         }
 26  
 }