(Object[] a)
| 344 | } |
| 345 | |
| 346 | private Annotation getAnnotation(Object[] a) { |
| 347 | if (a[0] == null) { |
| 348 | a[0] = Proxy.newProxyInstance |
| 349 | (vmField.class_.loader, new Class[] { (Class) a[1] }, |
| 350 | new AnnotationInvocationHandler(a)); |
| 351 | } |
| 352 | return (Annotation) a[0]; |
| 353 | } |
| 354 | |
| 355 | private boolean hasAnnotations() { |
| 356 | return vmField.addendum != null |