| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| Format |
|
| 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.IdNamelessEntity; | |
| 6 | import org.kuali.student.r2.common.infc.TimeAmount; | |
| 7 | import org.kuali.student.r2.lum.course.dto.ActivityInfo; | |
| 8 | ||
| 9 | /** | |
| 10 | * Detailed information about a single course. | |
| 11 | * | |
| 12 | * @author Kuali Student Team (sambitpa@kuali.org) | |
| 13 | */ | |
| 14 | public interface Format extends IdNamelessEntity { | |
| 15 | public List<ActivityInfo> getActivities(); | |
| 16 | ||
| 17 | public List<String> getTermsOffered(); | |
| 18 | ||
| 19 | public TimeAmount getDuration(); | |
| 20 | } |