Coverage Report - org.kuali.core.db.torque.pojo.View
 
Classes in this File Line Coverage Branch Coverage Complexity
View
0%
0/7
N/A
1
 
 1  
 package org.kuali.core.db.torque.pojo;
 2  
 
 3  0
 public class View {
 4  
 
 5  
     private String name;
 6  
     private String definition;
 7  
 
 8  
     public String getName() {
 9  0
         return name;
 10  
     }
 11  
 
 12  
     public void setName(String name) {
 13  0
         this.name = name;
 14  0
     }
 15  
 
 16  
     public String getDefinition() {
 17  0
         return definition;
 18  
     }
 19  
 
 20  
     public void setDefinition(String definition) {
 21  0
         this.definition = definition;
 22  0
     }
 23  
 
 24  
 }