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