| 1 |
|
package org.kuali.student.lum.common.client.helpers; |
| 2 |
|
|
|
|
|
| 0% |
Uncovered Elements: 12 (12) |
Complexity: 5 |
Complexity Density: 0.71 |
|
| 3 |
|
public class RecentDocInfo{ |
| 4 |
|
private String name; |
| 5 |
|
private String location; |
| 6 |
|
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
| 7 |
0
|
public RecentDocInfo(String name, String location) {... |
| 8 |
0
|
super(); |
| 9 |
0
|
this.name = name; |
| 10 |
0
|
this.location = location; |
| 11 |
|
} |
| 12 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 13 |
0
|
public String getName() {... |
| 14 |
0
|
return name; |
| 15 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 16 |
0
|
public void setName(String name) {... |
| 17 |
0
|
this.name = name; |
| 18 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 19 |
0
|
public String getLocation() {... |
| 20 |
0
|
return location; |
| 21 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 22 |
0
|
public void setLocation(String location) {... |
| 23 |
0
|
this.location = location; |
| 24 |
|
} |
| 25 |
|
|
| 26 |
|
} |