View Javadoc

1   package org.kuali.student.r2.lum.course.infc;
2   
3   import java.util.List;
4   
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   /**
10   * This class //TODO ...
11   *
12   * @author Kuali Student Team
13   */
14  public interface LoDisplay extends IdEntity {
15  
16      /**
17       * Detailed information about a learning objective
18       */
19      public Lo getLoInfo() ;
20  
21  
22      /**
23       * List of Lo Display information. (info and child relations
24       */
25      public List<? extends LoDisplay> getLoDisplayInfoList() ;
26  
27  
28      /**
29       * Unique identifier for the LO to LO relation type.
30       */
31      public String getParentRelType() ;
32  
33  
34      /**
35       * Unique identifier for a LO to LO relationship.
36       */
37      public String getParentLoRelationid();
38  
39  
40      /**
41       * List of learning objective category information.
42       */
43      public List<? extends LoCategory> getLoCategoryInfoList();
44  
45  
46  }