| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| DocumentLayoutController |
|
| 1.0;1 |
| 1 | package org.kuali.student.common.ui.client.configurable.mvc.layouts; | |
| 2 | ||
| 3 | import com.google.gwt.user.client.ui.Widget; | |
| 4 | ||
| 5 | /** | |
| 6 | * Interface for layouts which have document headers (titles) and widgets associated with all | |
| 7 | * the content of a controller. | |
| 8 | * | |
| 9 | * @author Kuali Student Team | |
| 10 | * | |
| 11 | */ | |
| 12 | public interface DocumentLayoutController extends ViewLayoutController{ | |
| 13 | public void setContentTitle(String title); | |
| 14 | public void addContentWidget(Widget w); | |
| 15 | public void setContentInfo(String text); | |
| 16 | } |