| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ReportExportWidget |
|
| 1.0;1 |
| 1 | package org.kuali.student.common.ui.client.reporting; | |
| 2 | ||
| 3 | import java.util.ArrayList; | |
| 4 | ||
| 5 | import org.kuali.student.common.ui.client.util.ExportElement; | |
| 6 | ||
| 7 | /** | |
| 8 | * An interface to access the Kuali Student ReportExporter | |
| 9 | * | |
| 10 | * @author Kuali Student Team | |
| 11 | */ | |
| 12 | public interface ReportExportWidget { | |
| 13 | ||
| 14 | public ArrayList<ExportElement> getExportElementsWidget(String viewName, String sectionName); | |
| 15 | ||
| 16 | } |