| 1 |
|
package org.kuali.spring.proxy; |
| 2 |
|
|
| 3 |
|
import java.lang.reflect.Method; |
| 4 |
|
|
| 5 |
|
import net.sf.cglib.proxy.MethodProxy; |
| 6 |
|
|
|
|
|
| 50% |
Uncovered Elements: 12 (24) |
Complexity: 10 |
Complexity Density: 0.71 |
|
| 7 |
|
public class CallbackContext { |
| 8 |
|
|
| 9 |
|
Object object; |
| 10 |
|
Method method; |
| 11 |
|
Object[] args; |
| 12 |
|
MethodProxy methodProxy; |
| 13 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 14 |
0
|
public CallbackContext() {... |
| 15 |
0
|
this(null, null, null, null); |
| 16 |
|
} |
| 17 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 1 |
Complexity Density: 0.2 |
|
| 18 |
4291
|
public CallbackContext(Object object, Method method, Object[] args, MethodProxy methodProxy) {... |
| 19 |
4291
|
super(); |
| 20 |
4291
|
this.object = object; |
| 21 |
4291
|
this.method = method; |
| 22 |
4291
|
this.args = args; |
| 23 |
4291
|
this.methodProxy = methodProxy; |
| 24 |
|
} |
| 25 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 26 |
4291
|
public Object getObject() {... |
| 27 |
4291
|
return object; |
| 28 |
|
} |
| 29 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 30 |
0
|
public void setObject(Object object) {... |
| 31 |
0
|
this.object = object; |
| 32 |
|
} |
| 33 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 34 |
0
|
public Method getMethod() {... |
| 35 |
0
|
return method; |
| 36 |
|
} |
| 37 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 38 |
0
|
public void setMethod(Method method) {... |
| 39 |
0
|
this.method = method; |
| 40 |
|
} |
| 41 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 42 |
4291
|
public Object[] getArgs() {... |
| 43 |
4291
|
return args; |
| 44 |
|
} |
| 45 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 46 |
0
|
public void setArgs(Object[] args) {... |
| 47 |
0
|
this.args = args; |
| 48 |
|
} |
| 49 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 50 |
4291
|
public MethodProxy getMethodProxy() {... |
| 51 |
4291
|
return methodProxy; |
| 52 |
|
} |
| 53 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 54 |
0
|
public void setMethodProxy(MethodProxy methodProxy) {... |
| 55 |
0
|
this.methodProxy = methodProxy; |
| 56 |
|
} |
| 57 |
|
} |