Coverage Report - org.kuali.student.lum.common.client.helpers.RecentDocInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
RecentDocInfo
0%
0/10
N/A
1
 
 1  
 package org.kuali.student.lum.common.client.helpers;
 2  
 
 3  
 public class RecentDocInfo{
 4  
         private String name;
 5  
         private String location;
 6  
         
 7  
         public RecentDocInfo(String name, String location) {
 8  0
                 super();
 9  0
                 this.name = name;
 10  0
                 this.location = location;
 11  0
         }
 12  
         
 13  
         public String getName() {
 14  0
                 return name;
 15  
         }
 16  
         public void setName(String name) {
 17  0
                 this.name = name;
 18  0
         }
 19  
         public String getLocation() {
 20  0
                 return location;
 21  
         }
 22  
         public void setLocation(String location) {
 23  0
                 this.location = location;
 24  0
         }
 25  
         
 26  
 }