1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.common.ui.client.widgets; |
17 | |
|
18 | |
import org.kuali.student.common.ui.client.widgets.layout.VerticalFlowPanel; |
19 | |
|
20 | |
import com.google.gwt.user.client.ui.Composite; |
21 | |
|
22 | |
public class KSTitleDescPanel extends Composite{ |
23 | 0 | private VerticalFlowPanel layout = new VerticalFlowPanel(); |
24 | 0 | private KSLabel title = new KSLabel(); |
25 | 0 | private KSLabel desc = new KSLabel(); |
26 | |
|
27 | 0 | public KSTitleDescPanel(String title, String desc){ |
28 | 0 | this.title.setText(title); |
29 | 0 | this.desc.setText(desc); |
30 | 0 | this.title.setStyleName("KS-Common-Title"); |
31 | 0 | this.desc.setStyleName("KS-Common-Desc"); |
32 | 0 | layout.add(this.title); |
33 | 0 | layout.add(this.desc); |
34 | 0 | this.initWidget(layout); |
35 | 0 | } |
36 | |
|
37 | 0 | public KSTitleDescPanel(String title){ |
38 | 0 | this.title.setText(title); |
39 | 0 | this.title.setStyleName("KS-Common-Title"); |
40 | 0 | this.desc.setStyleName("KS-Common-Desc"); |
41 | 0 | layout.add(this.title); |
42 | 0 | layout.add(this.desc); |
43 | 0 | this.desc.setVisible(false); |
44 | 0 | this.initWidget(layout); |
45 | 0 | } |
46 | |
|
47 | 0 | public KSTitleDescPanel(){ |
48 | 0 | layout.add(this.title); |
49 | 0 | layout.add(this.desc); |
50 | 0 | this.title.setStyleName("KS-Common-Title"); |
51 | 0 | this.desc.setStyleName("KS-Common-Desc"); |
52 | 0 | this.desc.setVisible(false); |
53 | 0 | this.title.setVisible(false); |
54 | 0 | this.initWidget(layout); |
55 | 0 | } |
56 | |
|
57 | |
public void setTitleText(String title){ |
58 | 0 | this.title.setText(title); |
59 | 0 | this.title.setVisible(true); |
60 | 0 | } |
61 | |
|
62 | |
public void setDesc(String desc){ |
63 | 0 | this.desc.setText(desc); |
64 | 0 | this.desc.setVisible(true); |
65 | 0 | } |
66 | |
|
67 | |
public KSLabel getTitleWidget() { |
68 | 0 | return title; |
69 | |
} |
70 | |
|
71 | |
public KSLabel getDescWidget(){ |
72 | 0 | return desc; |
73 | |
} |
74 | |
|
75 | |
|
76 | |
} |