Clover Coverage Report - KS LUM UI Common 1.2.1-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
7   26   5   1.4
0   22   0.71   5
5     1  
1    
 
  RecentDocInfo       Line # 3 7 0% 5 12 0% 0.0
 
No Tests
 
1    package org.kuali.student.lum.common.client.helpers;
2   
 
3    public class RecentDocInfo{
4    private String name;
5    private String location;
6   
 
7  0 toggle public RecentDocInfo(String name, String location) {
8  0 super();
9  0 this.name = name;
10  0 this.location = location;
11    }
12   
 
13  0 toggle public String getName() {
14  0 return name;
15    }
 
16  0 toggle public void setName(String name) {
17  0 this.name = name;
18    }
 
19  0 toggle public String getLocation() {
20  0 return location;
21    }
 
22  0 toggle public void setLocation(String location) {
23  0 this.location = location;
24    }
25   
26    }