1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.common.ui.client.widgets.search; |
17 |
|
|
18 |
|
import org.kuali.student.common.ui.client.widgets.searchtable.ResultRow; |
19 |
|
|
|
|
| 0% |
Uncovered Elements: 15 (15) |
Complexity: 6 |
Complexity Density: 0.67 |
|
20 |
|
public class SelectedResults { |
21 |
|
private String displayKey; |
22 |
|
private String returnKey; |
23 |
|
private ResultRow resultRow; |
24 |
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
25 |
0
|
public SelectedResults(String resultReturnKey, String resultDisplayKey) {... |
26 |
0
|
displayKey = resultReturnKey; |
27 |
0
|
returnKey = resultDisplayKey; |
28 |
|
} |
29 |
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
30 |
0
|
public SelectedResults(String resultReturnKey, String resultDisplayKey, ResultRow row) {... |
31 |
0
|
displayKey = resultReturnKey; |
32 |
0
|
returnKey = resultDisplayKey; |
33 |
0
|
this.resultRow = row; |
34 |
|
} |
35 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
36 |
0
|
public String getDisplayKey() {... |
37 |
0
|
return displayKey; |
38 |
|
} |
39 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
40 |
0
|
public String getReturnKey() {... |
41 |
0
|
return returnKey; |
42 |
|
} |
43 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
44 |
0
|
public void setResultRow(ResultRow resultRow) {... |
45 |
0
|
this.resultRow = resultRow; |
46 |
|
} |
47 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
48 |
0
|
public ResultRow getResultRow() {... |
49 |
0
|
return resultRow; |
50 |
|
} |
51 |
|
} |