1 | |
package org.kuali.student.r2.lum.course.infc; |
2 | |
|
3 | |
import org.kuali.student.lum.lo.dto.LoCategoryInfo; |
4 | |
import org.kuali.student.lum.lo.dto.LoInfo; |
5 | |
import org.kuali.student.r2.common.infc.IdEntity; |
6 | |
import org.kuali.student.r2.lum.lo.infc.Lo; |
7 | |
import org.kuali.student.r2.lum.lo.infc.LoCategory; |
8 | |
|
9 | |
import java.util.ArrayList; |
10 | |
import java.util.List; |
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
public interface LoDisplay extends IdEntity { |
18 | |
|
19 | |
|
20 | |
|
21 | |
|
22 | |
public Lo getLoInfo() ; |
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
public List<? extends LoDisplay> getLoDisplayInfoList() ; |
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
public String getParentRelType() ; |
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | |
|
40 | |
public String getParentLoRelationid(); |
41 | |
|
42 | |
|
43 | |
|
44 | |
|
45 | |
|
46 | |
public List<? extends LoCategory> getLoCategoryInfoList(); |
47 | |
|
48 | |
|
49 | |
} |