Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
CourseVariation |
|
| 1.0;1 |
1 | package org.kuali.student.r2.lum.course.infc; | |
2 | ||
3 | import org.kuali.student.r2.common.infc.IdNamelessEntity; | |
4 | ||
5 | public interface CourseVariation extends IdNamelessEntity { | |
6 | ||
7 | /** | |
8 | * Full name of the variation, commonly used on catalogues | |
9 | */ | |
10 | public String getVariationTitle(); | |
11 | ||
12 | /** | |
13 | * | |
14 | */ | |
15 | public String getSubjectArea(); | |
16 | ||
17 | /** | |
18 | * The "extra" portion of the code, which usually corresponds with the most | |
19 | * detailed part of the number. | |
20 | */ | |
21 | public String getCourseNumberSuffix(); | |
22 | ||
23 | /** | |
24 | * A number that indicates the sequence or order of variation in cases where | |
25 | * several different variations have the same offical Identifier | |
26 | */ | |
27 | public String getVariationCode(); | |
28 | ||
29 | } |