Example usage for org.springframework.core.type.classreading RecursiveAnnotationArrayVisitor RecursiveAnnotationArrayVisitor

List of usage examples for org.springframework.core.type.classreading RecursiveAnnotationArrayVisitor RecursiveAnnotationArrayVisitor

Introduction

In this page you can find the example usage for org.springframework.core.type.classreading RecursiveAnnotationArrayVisitor RecursiveAnnotationArrayVisitor.

Prototype

public RecursiveAnnotationArrayVisitor(String attributeName, AnnotationAttributes attributes,
            @Nullable ClassLoader classLoader) 

Source Link

Usage

From source file:org.springframework.core.type.classreading.AbstractRecursiveAnnotationVisitor.java

@Override
public AnnotationVisitor visitArray(String attributeName) {
    return new RecursiveAnnotationArrayVisitor(attributeName, this.attributes, this.classLoader);
}

From source file:org.springframework.core.type.classreading.AbstractRecursiveAnnotationVisitor.java

public AnnotationVisitor visitArray(String attributeName) {
    return new RecursiveAnnotationArrayVisitor(attributeName, this.attributes, this.classLoader);
}