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.invocation.realmethod;
6 
7 import java.io.Serializable;
8 
9 import org.mockito.internal.creation.MockitoMethodProxy;
10 
11 public interface HasCGLIBMethodProxy extends Serializable {
12 
getMethodProxy()13     MockitoMethodProxy getMethodProxy();
14 }
15