1/*
2 * Copyright (c) 2007 Mockito contributors
3 * This program is made available under the terms of the MIT License.
4 */
5package org.mockito.internal.creation;
6
7import org.mockito.cglib.proxy.MethodProxy;
8
9public interface MockitoMethodProxy {
10
11    Object invokeSuper(Object target, Object[] arguments) throws Throwable;
12
13    MethodProxy getMethodProxy();
14
15}