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