Coverage Report - org.kuali.student.enrollment.class1.lui.model.LuiRichTextEntity
 
Classes in this File Line Coverage Branch Coverage Complexity
LuiRichTextEntity
0%
0/15
0%
0/2
1.25
 
 1  
 package org.kuali.student.enrollment.class1.lui.model;
 2  
 
 3  
 import javax.persistence.Entity;
 4  
 import javax.persistence.Table;
 5  
 
 6  
 import org.kuali.student.r2.common.dto.RichTextInfo;
 7  
 import org.kuali.student.r2.common.entity.RichTextEntity;
 8  
 import org.kuali.student.r2.common.infc.RichText;
 9  
 
 10  
 @Entity
 11  
 @Table(name = "KSEN_LUI_RICH_TEXT")
 12  
 public class LuiRichTextEntity extends RichTextEntity{
 13  0
     public LuiRichTextEntity() {
 14  
         
 15  0
     }
 16  
     
 17  0
     public LuiRichTextEntity(String plain, String formatted){
 18  0
         this.setFormatted(formatted);
 19  0
         this.setPlain(plain);
 20  0
     }
 21  
     
 22  0
     public LuiRichTextEntity(RichText rt) {
 23  0
         if (null != rt) {
 24  0
             this.setFormatted(rt.getFormatted());
 25  0
             this.setPlain(rt.getPlain());
 26  
         }
 27  0
     }
 28  
     
 29  
     public RichTextInfo toDto() {
 30  0
         RichTextInfo rti = new RichTextInfo();
 31  0
         rti.setPlain(getPlain());
 32  0
         rti.setFormatted(getFormatted());
 33  0
         return rti;
 34  
     }
 35  
 }