Coverage Report - org.kuali.student.r2.core.classI.atp.model.AtpRichTextEntity
 
Classes in this File Line Coverage Branch Coverage Complexity
AtpRichTextEntity
0%
0/13
N/A
1
 
 1  
 package org.kuali.student.r2.core.classI.atp.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_RICH_TEXT_T")
 12  
 public class AtpRichTextEntity extends RichTextEntity {
 13  
 
 14  0
     public AtpRichTextEntity(){}
 15  
     
 16  0
     public AtpRichTextEntity(String plain, String formatted){
 17  0
         this.setFormatted(formatted);
 18  0
         this.setPlain(plain);
 19  0
     }
 20  
     
 21  0
     public AtpRichTextEntity(RichText rt){
 22  0
         this.setFormatted(rt.getFormatted());
 23  0
         this.setPlain(rt.getPlain());
 24  0
     }
 25  
     
 26  
     public RichText toDto() {
 27  0
         RichTextInfo rti = RichTextInfo.newInstance();
 28  0
         rti.setPlain(getPlain());
 29  0
         rti.setFormatted(getFormatted());
 30  0
         return rti;
 31  
     }
 32  
 }