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 extends AbstractAwareMethod { 10 getName()11 String getName(); 12 getReturnType()13 Class<?> getReturnType(); 14 getParameterTypes()15 Class<?>[] getParameterTypes(); 16 getExceptionTypes()17 Class<?>[] getExceptionTypes(); 18 isVarArgs()19 boolean isVarArgs(); 20 getJavaMethod()21 Method getJavaMethod(); 22 } 23