View Javadoc

1   package org.kuali.student.common.ui.client.widgets.table.summary;
2   
3   import com.google.gwt.user.client.ui.Widget;
4   
5   public class SectionRow {
6       private boolean isRequired = false;
7       private String title ="";
8       private int contentCellCount = 1;
9       private Widget cell1;
10      private Widget cell2;
11      private String key;
12      
13      public String getKey() {
14          return key;
15      }
16      public void setKey(String key) {
17          this.key = key;
18      }
19      public boolean isRequired() {
20          return isRequired;
21      }
22      public void setRequired(boolean isRequired) {
23          this.isRequired = isRequired;
24      }
25      public String getTitle() {
26          return title;
27      }
28      public void setTitle(String title) {
29          this.title = title;
30      }
31      public int getContentCellCount() {
32          return contentCellCount;
33      }
34      public void setContentCellCount(int contentCellCount) {
35          this.contentCellCount = contentCellCount;
36      }
37      public Widget getCell1() {
38          return cell1;
39      }
40      public void setCell1(Widget cell1) {
41          this.cell1 = cell1;
42      }
43      public Widget getCell2() {
44          return cell2;
45      }
46      public void setCell2(Widget cell2) {
47          this.cell2 = cell2;
48      }
49      
50  }