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.invocation;
6
7import java.lang.reflect.Method;
8
9public interface MockitoMethod {
10
11    public String getName();
12
13    public Class<?> getReturnType();
14
15    public Class<?>[] getParameterTypes();
16
17    public Class<?>[] getExceptionTypes();
18
19    public boolean isVarArgs();
20
21    public Method getJavaMethod();
22}
23