1 package org.kuali.student.r2.lum.program.infc;
2
3 import org.kuali.student.r1.core.statement.dto.StatementTreeViewInfo;
4 import org.kuali.student.r2.lum.course.dto.LoDisplayInfo;
5
6 import java.util.List;
7 import org.kuali.student.r2.common.infc.IdNamelessEntity;
8 import org.kuali.student.r2.common.infc.RichText;
9
10
11
12
13
14
15
16 public interface ProgramRequirement extends IdNamelessEntity {
17
18
19
20
21
22
23 public RichText getDescr();
24
25
26
27
28
29
30
31 public String getShortTitle();
32
33
34
35
36
37
38 public String getLongTitle();
39
40
41
42
43
44
45 public List<LoDisplayInfo> getLearningObjectives();
46
47
48
49
50
51
52 public StatementTreeViewInfo getStatement();
53
54
55
56
57
58
59 public Integer getMinCredits();
60
61
62
63
64
65
66 public Integer getMaxCredits();
67 }