Lines Matching refs:invocationHandler
23 import java.lang.reflect.InvocationHandler;
586 private static class DefaultInvocationHandler implements InvocationHandler {
684 return createProxy(clazz, new InvocationHandler() {
706 return createProxy(clazz, new InvocationHandler() {
1157 InvocationHandler invocationHandler = Proxy.getInvocationHandler(mock);
1158 if (invocationHandler instanceof DefaultInvocationHandler) {
1159 return (DefaultInvocationHandler) invocationHandler;
1165 Object invocationHandler = getHandlerMethod.invoke(proxyBuilder, mock);
1166 if (invocationHandler instanceof DefaultInvocationHandler) {
1167 return (DefaultInvocationHandler) invocationHandler;
1175 InvocationHandler invocationHandler = Proxy.getInvocationHandler(methodHandler);
1176 Method getOriginalMethod = invocationHandler.getClass().getMethod("$$getOriginal");
1177 Object original = getOriginalMethod.invoke(invocationHandler);
1195 InvocationHandler handler) {
1208 InvocationHandler methodFilterHandler = new InvocationHandler() {
1239 InvocationHandler methodHandlerHandler = new InvocationHandler() {
1241 public InvocationHandler $$getOriginal() {