(ClassLoader loader, Object[] a)
| 514 | } |
| 515 | |
| 516 | public static Annotation getAnnotation(ClassLoader loader, Object[] a) { |
| 517 | if (a[0] == null) { |
| 518 | a[0] = Proxy.newProxyInstance |
| 519 | (loader, new Class[] { (Class) a[1] }, |
| 520 | new AnnotationInvocationHandler(a)); |
| 521 | } |
| 522 | return (Annotation) a[0]; |
| 523 | } |
| 524 | |
| 525 | public static Object getAnnotationDefaultValue(ClassLoader loader, |
| 526 | MethodAddendum addendum) { |
no test coverage detected