View Javadoc

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  @Deprecated
13  public class TableSection extends BaseSection{
14  	public TableSection(){
15  		init();
16  	}
17  
18  	public TableSection(SectionTitle title){
19  		init();
20  		layout.setLayoutTitle(title);
21  	}
22  
23  	private void init() {
24  		layout = new TableFieldLayout();
25  		this.add(layout);
26  	}
27  }