Coverage Report - org.kuali.student.r2.core.classI.atp.model.AtpStateEntity
 
Classes in this File Line Coverage Branch Coverage Complexity
AtpStateEntity
0%
0/7
N/A
1
 
 1  
 package org.kuali.student.r2.core.classI.atp.model;
 2  
 
 3  
 import java.util.Date;
 4  
 
 5  
 import javax.persistence.Column;
 6  
 import javax.persistence.Entity;
 7  
 import javax.persistence.Table;
 8  
 
 9  
 import org.kuali.student.r2.common.entity.MetaEntity;
 10  
 
 11  
 @Entity
 12  
 @Table(name = "KSEN_ATP_STATE")
 13  0
 public class AtpStateEntity extends MetaEntity{
 14  
     private String name;
 15  
 
 16  
     @Column(name="DESCR")
 17  
     private String description;
 18  
     
 19  
     
 20  
     public String getName() {
 21  0
         return name;
 22  
     }
 23  
 
 24  
     public void setName(String name) {
 25  0
         this.name = name;
 26  0
     }
 27  
 
 28  
     public String getDescription() {
 29  0
         return description;
 30  
     }
 31  
 
 32  
     public void setDescription(String description) {
 33  0
         this.description = description;
 34  0
     }
 35  
 
 36  
 }