| 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.List; | |
| 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 String getExportFieldValue(); | |
| 15 | ||
| 16 |      public List<ExportElement> getExportElementSubset(ExportElement parent); | |
| 17 | ||
| 18 | public boolean isExportElement(); | |
| 19 | ||
| 20 | } |