| 1 | |
package org.kuali.student.lum.lu.ui.dependency.client.controllers; |
| 2 | |
|
| 3 | |
import org.kuali.student.common.ui.client.configurable.mvc.layouts.BasicLayout; |
| 4 | |
import org.kuali.student.lum.lu.ui.dependency.client.views.DependencyAnalysisView; |
| 5 | |
|
| 6 | |
public class DependencyAnalysisController extends BasicLayout{ |
| 7 | |
|
| 8 | 0 | public enum DependencyViews{MAIN}; |
| 9 | |
|
| 10 | |
public DependencyAnalysisController(String controllerId) { |
| 11 | 0 | super(controllerId); |
| 12 | 0 | addView(new DependencyAnalysisView(this)); |
| 13 | 0 | setDefaultView(DependencyViews.MAIN); |
| 14 | 0 | } |
| 15 | |
|
| 16 | |
} |