/* * Copyright (C) 2014 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package java.lang.reflect; public final class Method extends java.lang.reflect.AccessibleObject implements java.lang.reflect.GenericDeclaration, java.lang.reflect.Member { Method() { throw new RuntimeException("Stub!"); } public java.lang.reflect.TypeVariable[] getTypeParameters() { throw new RuntimeException("Stub!"); } public java.lang.String toGenericString() { throw new RuntimeException("Stub!"); } public java.lang.reflect.Type[] getGenericParameterTypes() { throw new RuntimeException("Stub!"); } public java.lang.reflect.Type[] getGenericExceptionTypes() { throw new RuntimeException("Stub!"); } public java.lang.reflect.Type getGenericReturnType() { throw new RuntimeException("Stub!"); } public java.lang.annotation.Annotation[] getDeclaredAnnotations() { throw new RuntimeException("Stub!"); } public A getAnnotation( java.lang.Class annotationType) { throw new RuntimeException("Stub!"); } public boolean isAnnotationPresent( java.lang.Class annotationType) { throw new RuntimeException("Stub!"); } public java.lang.annotation.Annotation[][] getParameterAnnotations() { throw new RuntimeException("Stub!"); } public boolean isVarArgs() { throw new RuntimeException("Stub!"); } public boolean isBridge() { throw new RuntimeException("Stub!"); } public boolean isSynthetic() { throw new RuntimeException("Stub!"); } public java.lang.Object getDefaultValue() { throw new RuntimeException("Stub!"); } public boolean equals(java.lang.Object object) { throw new RuntimeException("Stub!"); } public java.lang.Class getDeclaringClass() { throw new RuntimeException("Stub!"); } public java.lang.Class[] getExceptionTypes() { throw new RuntimeException("Stub!"); } public int getModifiers() { throw new RuntimeException("Stub!"); } public java.lang.String getName() { throw new RuntimeException("Stub!"); } public java.lang.Class[] getParameterTypes() { throw new RuntimeException("Stub!"); } public java.lang.Class getReturnType() { throw new RuntimeException("Stub!"); } public int hashCode() { throw new RuntimeException("Stub!"); } public java.lang.Object invoke(java.lang.Object receiver, java.lang.Object... args) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException, java.lang.reflect.InvocationTargetException { throw new RuntimeException("Stub!"); } public java.lang.String toString() { throw new RuntimeException("Stub!"); } }