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