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  
         public void setName(String name) {
 12  0
                 this.name = name;
 13  0
         }
 14  
         public String getDefinition() {
 15  0
                 return definition;
 16  
         }
 17  
         public void setDefinition(String definition) {
 18  0
                 this.definition = definition;
 19  0
         }
 20  
         
 21  
 }