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