| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| EditableConfiguration |
|
| 1.0;1 |
| 1 | package org.kuali.student.lum.common.client.configuration; | |
| 2 | ||
| 3 | import org.kuali.student.common.ui.client.mvc.View; | |
| 4 | ||
| 5 | /** | |
| 6 | * Should be implemented by classes that intend to provide "display" and "edit" views. | |
| 7 | * | |
| 8 | * @author Igor | |
| 9 | */ | |
| 10 | public interface EditableConfiguration extends Configuration { | |
| 11 | View getEditView(); | |
| 12 | } |