01: package dynaop;
02:
03: import java.lang.reflect.Method;
04:
05: /**
06: *
07: *
08: * @author Bob Lee (crazybob@crazybob.org)
09: */
10: public class MockProxyContext implements ProxyContext {
11:
12: public ProxyType getProxyType() {
13: throw new UnsupportedOperationException();
14: }
15:
16: public Interceptor[] getInterceptors(Method method) {
17: throw new UnsupportedOperationException();
18: }
19:
20: public Proxy getProxy() {
21: throw new UnsupportedOperationException();
22: }
23:
24: public Object unwrap() {
25: throw new UnsupportedOperationException();
26: }
27:
28: public Handle getHandle() {
29: throw new UnsupportedOperationException();
30: }
31:
32: public boolean isClassProxy() {
33: return false;
34: }
35:
36: }
|