| 1 | |
package org.kuali.student.lum.lu.ui.main.client.configuration; |
| 2 | |
|
| 3 | |
import com.google.gwt.core.client.GWT; |
| 4 | |
import com.google.gwt.uibinder.client.UiBinder; |
| 5 | |
import com.google.gwt.user.client.ui.Composite; |
| 6 | |
import com.google.gwt.user.client.ui.Widget; |
| 7 | |
|
| 8 | |
public class CurriculumHomeHelpTable extends Composite{ |
| 9 | |
|
| 10 | 0 | private static HelpTableUiBinder uiBinder = GWT.create(HelpTableUiBinder.class); |
| 11 | |
|
| 12 | |
interface HelpTableUiBinder extends UiBinder<Widget, CurriculumHomeHelpTable> { |
| 13 | |
} |
| 14 | |
|
| 15 | 0 | public CurriculumHomeHelpTable() { |
| 16 | 0 | initialize(); |
| 17 | 0 | } |
| 18 | |
|
| 19 | |
protected void initialize() { |
| 20 | 0 | initWidget(uiBinder.createAndBindUi(this)); |
| 21 | 0 | } |
| 22 | |
|
| 23 | |
|
| 24 | |
} |