Lines Matching refs:Method
19 import java.lang.reflect.Method;
39 private static Method JDK_ANNOTATION_TYPE_METHOD = null;
48 // Try to resolve the JDK annotation type method
120 * Executes a method invocation on a proxy instance.
123 * <code>AnnotationImpl</code>. The <code>annotationType()</code> method
126 public Object invoke(Object proxy, Method method, Object[] args)
129 String name = method.getName();
130 if (Object.class == method.getDeclaringClass()) {
141 && method.getParameterTypes().length == 0)
146 return getDefault(name, method);
148 return mv.getValue(classLoader, pool, method);
151 private Object getDefault(String name, Method method)
166 return mv.getValue(classLoader, pool, method);
190 Method[] methods = annotationType.getDeclaredMethods();
250 Method[] methods = annotationType.getDeclaredMethods();