1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.common.ui.client.configurable.mvc.sections;
17
18 import org.kuali.student.common.ui.client.configurable.mvc.SectionTitle;
19 import org.kuali.student.common.ui.client.widgets.field.layout.layouts.GroupFieldLayout;
20
21 public class GroupSection extends BaseSection{
22
23 public GroupSection(){
24 layout = new GroupFieldLayout();
25 this.add(layout);
26 }
27
28 public GroupSection(SectionTitle title){
29 layout = new GroupFieldLayout(title);
30 this.add(layout);
31 }
32
33 public void nextLine(){
34 ((GroupFieldLayout)layout).nextLine();
35 }
36
37 }