• 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;
6 
7 import org.mockito.invocation.MockHandler;
8 
9 /**
10  * Deprecated, please use {@link MockHandler}.
11  * <p>
12  * This class was changed in Mockito in order to tidy up Mockito API
13  * and make it easier for other frameworks to integrate with Mockito.
14  * Since this class is internal, e.g. it resides in "org.mockito.internal" package,
15  * Mockito team can change it without the need for major version release of Mockito.
16  * <p>
17  * This interface was deprecated in Mockito 2.10.0 and will be deleted in Mockito 3.0.
18  */
19 @Deprecated
20 public interface InternalMockHandler<T> extends MockHandler {}
21