1 |
|
package org.kuali.spring.util.event; |
2 |
|
|
|
|
| 57.1% |
Uncovered Elements: 6 (14) |
Complexity: 6 |
Complexity Density: 0.75 |
|
3 |
|
public class ValueResolutionEvent { |
4 |
|
Object oldValue; |
5 |
|
Object newValue; |
6 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
7 |
0
|
public ValueResolutionEvent() {... |
8 |
0
|
this(null, null); |
9 |
|
} |
10 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
11 |
12
|
public ValueResolutionEvent(Object oldValue, Object newValue) {... |
12 |
12
|
super(); |
13 |
12
|
this.oldValue = oldValue; |
14 |
12
|
this.newValue = newValue; |
15 |
|
} |
16 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
17 |
12
|
public Object getOldValue() {... |
18 |
12
|
return oldValue; |
19 |
|
} |
20 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
21 |
0
|
public void setOldValue(Object oldValue) {... |
22 |
0
|
this.oldValue = oldValue; |
23 |
|
} |
24 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
25 |
12
|
public Object getNewValue() {... |
26 |
12
|
return newValue; |
27 |
|
} |
28 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
29 |
0
|
public void setNewValue(Object newValue) {... |
30 |
0
|
this.newValue = newValue; |
31 |
|
} |
32 |
|
} |