1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.common.ui.client.application; |
17 |
|
|
18 |
|
import org.kuali.student.common.ui.client.configurable.mvc.LayoutController; |
19 |
|
import org.kuali.student.common.ui.client.widgets.containers.KSWrapper; |
20 |
|
|
21 |
|
import com.google.gwt.user.client.ui.Composite; |
22 |
|
import com.google.gwt.user.client.ui.Panel; |
23 |
|
import com.google.gwt.user.client.ui.SimplePanel; |
24 |
|
import com.google.gwt.user.client.ui.VerticalPanel; |
25 |
|
import com.google.gwt.user.client.ui.Widget; |
26 |
|
|
27 |
|
|
28 |
|
|
29 |
|
|
30 |
|
@author |
31 |
|
@see |
32 |
|
|
33 |
|
@Deprecated |
|
|
| 0% |
Uncovered Elements: 10 (10) |
Complexity: 3 |
Complexity Density: 0.43 |
|
34 |
|
public class ApplicationComposite extends Composite { |
35 |
|
private final Panel body = new VerticalPanel(); |
36 |
|
|
37 |
|
private final KSWrapper headerFooterContainer = new KSWrapper(); |
38 |
|
private final SimplePanel content = new SimplePanel(); |
39 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 1 |
Complexity Density: 0.2 |
|
40 |
0
|
public ApplicationComposite() {... |
41 |
0
|
super.initWidget(body); |
42 |
|
|
43 |
0
|
headerFooterContainer.setContent(content); |
44 |
0
|
body.add(headerFooterContainer); |
45 |
|
|
46 |
0
|
super.addStyleName("KS-Application"); |
47 |
0
|
content.addStyleName("KS-Application-Content"); |
48 |
|
} |
49 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
50 |
0
|
public void setContent(Widget w) {... |
51 |
0
|
content.setWidget(w); |
52 |
|
} |
53 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
54 |
0
|
public Widget getContent() {... |
55 |
0
|
return content.getWidget(); |
56 |
|
} |
57 |
|
|
58 |
|
} |