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.util;
6
7//TODO SF Replace with RealMethod and get rid of (possibly).
8public interface MockitoMethodProxy {
9    Object invokeSuper(Object target, Object[] arguments);
10}
11