Visits an annotation of the field. @param descriptor the class descriptor of the annotation class. @param visible true if the annotation is visible at runtime. @return a visitor to visit the annotation values, or null if this visitor is not interested in visiting this annotati
(final String descriptor, final boolean visible)
| 85 | * interested in visiting this annotation. |
| 86 | */ |
| 87 | public AnnotationVisitor visitAnnotation(final String descriptor, final boolean visible) { |
| 88 | if (fv != null) { |
| 89 | return fv.visitAnnotation(descriptor, visible); |
| 90 | } |
| 91 | return null; |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * Visits an annotation on the type of the field. |