1 | |
package org.kuali.student.lum.lu.ui.main.client.configuration; |
2 | |
|
3 | |
import org.kuali.student.common.ui.client.mvc.Controller; |
4 | |
import org.kuali.student.common.ui.client.mvc.ViewComposite; |
5 | |
|
6 | |
import com.google.gwt.core.client.GWT; |
7 | |
import com.google.gwt.uibinder.client.UiBinder; |
8 | |
import com.google.gwt.user.client.ui.Widget; |
9 | |
|
10 | |
public class AcknowledgeView extends ViewComposite{ |
11 | 0 | private static AcknowledgeUiBinder uiBinder = GWT.create(AcknowledgeUiBinder.class); |
12 | |
|
13 | |
interface AcknowledgeUiBinder extends UiBinder<Widget, AcknowledgeView> { |
14 | |
} |
15 | |
|
16 | |
public AcknowledgeView(Controller controller, Enum<?> viewType) { |
17 | 0 | super(controller, "Acknowledgements", viewType); |
18 | 0 | this.initWidget(uiBinder.createAndBindUi(this)); |
19 | 0 | } |
20 | |
|
21 | |
|
22 | |
} |