| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| CourseExpenditure |
|
| 1.0;1 |
| 1 | package org.kuali.student.r2.lum.course.infc; | |
| 2 | ||
| 3 | import java.util.List; | |
| 4 | ||
| 5 | import org.kuali.student.r2.common.infc.HasAttributes; | |
| 6 | import org.kuali.student.r2.lum.clu.infc.AffiliatedOrg; | |
| 7 | ||
| 8 | /** | |
| 9 | * Detailed information about expenditure for the course. | |
| 10 | * | |
| 11 | * @author Kuali Student Team (sambitpa@kuali.org) | |
| 12 | */ | |
| 13 | public interface CourseExpenditure extends HasAttributes { | |
| 14 | ||
| 15 | /** | |
| 16 | * List of affiliated organizations. | |
| 17 | */ | |
| 18 | public List<? extends AffiliatedOrg> getAffiliatedOrgs(); | |
| 19 | } |