1 | |
package org.kuali.student.lum.lu.ui.browseprogram.client.controllers; |
2 | |
|
3 | |
import org.kuali.student.common.ui.client.configurable.mvc.layouts.BasicLayout; |
4 | |
import org.kuali.student.lum.lu.ui.browseprogram.client.views.BrowseProgramView; |
5 | |
|
6 | |
public class BrowseProgramController extends BasicLayout { |
7 | |
|
8 | 0 | public enum BrowseProgramViews { |
9 | 0 | MAIN |
10 | |
} |
11 | |
|
12 | |
public BrowseProgramController(String controllerId) { |
13 | 0 | super(controllerId); |
14 | 0 | addView(new BrowseProgramView(this, "Browse Majors and Specializations", BrowseProgramViews.MAIN)); |
15 | 0 | setDefaultView(BrowseProgramViews.MAIN); |
16 | 0 | } |
17 | |
|
18 | |
} |