Example usage for org.objectweb.asm.util CheckAnnotationAdapter CheckAnnotationAdapter

List of usage examples for org.objectweb.asm.util CheckAnnotationAdapter CheckAnnotationAdapter

Introduction

In this page you can find the example usage for org.objectweb.asm.util CheckAnnotationAdapter CheckAnnotationAdapter.

Prototype

public CheckAnnotationAdapter(final AnnotationVisitor annotationVisitor) 

Source Link

Usage

From source file:org.jvnet.jax_ws_commons.beans_generator.ambassador.impl.asm.ASMUtil.java

License:Open Source License

public static AnnotationVisitor wrapIntoCheckedVisitor(AnnotationVisitor visitor) {
    return new CheckAnnotationAdapter(visitor);
}