コード例 #1
0
  public void visitAnnotation(Clazz clazz, Annotation annotation) {
    // Let the visitor visit the classes referenced in the annotation.
    annotation.referencedClassesAccept(classVisitor);

    // Visit the element values.
    annotation.elementValuesAccept(clazz, this);
  }
コード例 #2
0
 public void visitAnnotation(
     Clazz clazz, Method method, int parameterIndex, Annotation annotation) {
   annotation.elementValuesAccept(clazz, this);
 }
コード例 #3
0
 public void visitAnnotation(
     Clazz clazz, Method method, CodeAttribute codeAttribute, Annotation annotation) {
   annotation.elementValuesAccept(clazz, this);
 }
コード例 #4
0
 public void visitAnnotation(Clazz clazz, Field field, Annotation annotation) {
   annotation.elementValuesAccept(clazz, this);
 }