Clover Coverage Report - Kuali Spring Utilities 1.1.1-SNAPSHOT
Coverage timestamp: Thu Apr 21 2011 14:08:56 EST
../../../../img/srcFileCovDistChart5.png 60% of files have more coverage
14   57   10   1.4
0   43   0.71   10
10     1  
1    
 
  CallbackContext       Line # 7 14 0% 10 12 50% 0.5
 
No Tests
 
1    package org.kuali.spring.proxy;
2   
3    import java.lang.reflect.Method;
4   
5    import net.sf.cglib.proxy.MethodProxy;
6   
 
7    public class CallbackContext {
8   
9    Object object;
10    Method method;
11    Object[] args;
12    MethodProxy methodProxy;
13   
 
14  0 toggle public CallbackContext() {
15  0 this(null, null, null, null);
16    }
17   
 
18  4291 toggle 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   
 
26  4291 toggle public Object getObject() {
27  4291 return object;
28    }
29   
 
30  0 toggle public void setObject(Object object) {
31  0 this.object = object;
32    }
33   
 
34  0 toggle public Method getMethod() {
35  0 return method;
36    }
37   
 
38  0 toggle public void setMethod(Method method) {
39  0 this.method = method;
40    }
41   
 
42  4291 toggle public Object[] getArgs() {
43  4291 return args;
44    }
45   
 
46  0 toggle public void setArgs(Object[] args) {
47  0 this.args = args;
48    }
49   
 
50  4291 toggle public MethodProxy getMethodProxy() {
51  4291 return methodProxy;
52    }
53   
 
54  0 toggle public void setMethodProxy(MethodProxy methodProxy) {
55  0 this.methodProxy = methodProxy;
56    }
57    }