Coverage Report - org.kuali.student.lum.lu.bo.LuType
 
Classes in this File Line Coverage Branch Coverage Complexity
LuType
0%
0/7
N/A
1
 
 1  
 package org.kuali.student.lum.lu.bo;
 2  
 
 3  
 import javax.persistence.Column;
 4  
 
 5  
 import org.kuali.student.core.bo.KsTypeBusinessObjectBase;
 6  
 
 7  0
 public class LuType extends KsTypeBusinessObjectBase {
 8  
 
 9  
         private static final long serialVersionUID = -6091857629199582219L;
 10  
 
 11  
         @Column(name = "INSTR_FRMT")
 12  
         private String instructionalFormat;
 13  
 
 14  
         @Column(name = "DLVR_MTHD")
 15  
     private String deliveryMethod;
 16  
 
 17  
         public String getInstructionalFormat() {
 18  0
                 return instructionalFormat;
 19  
         }
 20  
 
 21  
         public void setInstructionalFormat(String instructionalFormat) {
 22  0
                 this.instructionalFormat = instructionalFormat;
 23  0
         }
 24  
 
 25  
         public String getDeliveryMethod() {
 26  0
                 return deliveryMethod;
 27  
         }
 28  
 
 29  
         public void setDeliveryMethod(String deliveryMethod) {
 30  0
                 this.deliveryMethod = deliveryMethod;
 31  0
         }
 32  
 
 33  
         
 34  
 }