Coverage Report - org.kuali.student.core.bo.KsRichTextBusinessObjectBase
 
Classes in this File Line Coverage Branch Coverage Complexity
KsRichTextBusinessObjectBase
0%
0/7
N/A
1
 
 1  
 package org.kuali.student.core.bo;
 2  
 
 3  
 import javax.persistence.Column;
 4  
 import javax.persistence.Inheritance;
 5  
 import javax.persistence.InheritanceType;
 6  
 import javax.persistence.MappedSuperclass;
 7  
 
 8  
 @MappedSuperclass
 9  
 @Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
 10  0
 public class KsRichTextBusinessObjectBase extends KsBusinessObjectBase {
 11  
     
 12  
     private static final long serialVersionUID = -8080006030631944540L;
 13  
 
 14  
     @Column(name = "PLAIN")
 15  
     private String plain;
 16  
 
 17  
     @Column(name = "FORMATTED")
 18  
     private String formatted;
 19  
 
 20  
     public String getPlain() {
 21  0
         return plain;
 22  
     }
 23  
 
 24  
     public void setPlain(String plain) {
 25  0
         this.plain = plain;
 26  0
     }
 27  
 
 28  
     public String getFormatted() {
 29  0
         return formatted;
 30  
     }
 31  
 
 32  
     public void setFormatted(String formatted) {
 33  0
         this.formatted = formatted;
 34  0
     }
 35  
 
 36  
 }