| 1 | |
package org.kuali.student.lum.lu.ui.course.client.views; |
| 2 | |
|
| 3 | |
import org.kuali.student.common.ui.client.configurable.mvc.SectionTitle; |
| 4 | |
import org.kuali.student.common.ui.client.mvc.Controller; |
| 5 | |
import org.kuali.student.common.ui.client.mvc.ViewComposite; |
| 6 | |
import org.kuali.student.lum.common.client.lo.CategoryManagement; |
| 7 | |
|
| 8 | |
import com.google.gwt.user.client.ui.FlowPanel; |
| 9 | |
|
| 10 | |
public class CategoryManagementView extends ViewComposite{ |
| 11 | |
|
| 12 | 0 | private FlowPanel layout = new FlowPanel(); |
| 13 | |
|
| 14 | |
public CategoryManagementView(Controller controller, String name, |
| 15 | |
Enum<?> viewType) { |
| 16 | 0 | super(controller, name, viewType); |
| 17 | 0 | this.initWidget(layout); |
| 18 | 0 | layout.addStyleName("standard-content-padding"); |
| 19 | 0 | layout.add(SectionTitle.generateH1Title(name)); |
| 20 | |
|
| 21 | 0 | layout.add(new CategoryManagement(true, false)); |
| 22 | 0 | } |
| 23 | |
|
| 24 | |
} |