Coverage Report - org.kuali.student.r2.core.class1.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.class1.atp.model;
 2  
 
 3  
 import javax.persistence.Column;
 4  
 import javax.persistence.Entity;
 5  
 import javax.persistence.Table;
 6  
 
 7  
 import org.kuali.student.r2.common.entity.MetaEntity;
 8  
 
 9  
 @Entity
 10  
 @Table(name = "KSEN_ATP_STATE")
 11  0
 public class AtpStateEntity extends MetaEntity {
 12  
     private String name;
 13  
 
 14  
     @Column(name="DESCR")
 15  
     private String description;
 16  
     
 17  
     
 18  
     public String getName() {
 19  0
         return name;
 20  
     }
 21  
 
 22  
     public void setName(String name) {
 23  0
         this.name = name;
 24  0
     }
 25  
 
 26  
     public String getDescription() {
 27  0
         return description;
 28  
     }
 29  
 
 30  
     public void setDescription(String description) {
 31  0
         this.description = description;
 32  0
     }
 33  
 
 34  
 }