List of usage examples for org.objectweb.asm ClassWriter visitTypeAnnotation
@Override
public final AnnotationVisitor visitTypeAnnotation(final int typeRef, final TypePath typePath,
final String descriptor, final boolean visible)
From source file:com.facebook.buck.jvm.java.abi.TypeAnnotationMirror.java
License:Apache License
@Override public void appendTo(ClassWriter writer) { AnnotationVisitor visitor = writer.visitTypeAnnotation(typeRef, typePath, desc, visible); visitValues(visitor);/* w ww .ja v a2 s. co m*/ visitor.visitEnd(); }