Example usage for org.springframework.asm SpringAsmInfo ASM_VERSION

List of usage examples for org.springframework.asm SpringAsmInfo ASM_VERSION

Introduction

In this page you can find the example usage for org.springframework.asm SpringAsmInfo ASM_VERSION.

Prototype

int ASM_VERSION

To view the source code for org.springframework.asm SpringAsmInfo ASM_VERSION.

Click Source Link

Document

The ASM compatibility version for Spring's ASM visitor implementations: currently Opcodes#ASM7 , as of Spring Framework 5.1.

Usage

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

public AbstractRecursiveAnnotationVisitor(@Nullable ClassLoader classLoader, AnnotationAttributes attributes) {
    super(SpringAsmInfo.ASM_VERSION);
    this.classLoader = classLoader;
    this.attributes = attributes;
}

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

public AbstractRecursiveAnnotationVisitor(ClassLoader classLoader, AnnotationAttributes attributes) {
    super(SpringAsmInfo.ASM_VERSION);
    this.classLoader = classLoader;
    this.attributes = attributes;
}