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