use of jdk.internal.org.objectweb.asm.AnnotationVisitor in project jdk8u_jdk by JetBrains.
the class TraceMethodVisitor method visitParameterAnnotation.
@Override
public AnnotationVisitor visitParameterAnnotation(final int parameter, final String desc, final boolean visible) {
Printer p = this.p.visitParameterAnnotation(parameter, desc, visible);
AnnotationVisitor av = mv == null ? null : mv.visitParameterAnnotation(parameter, desc, visible);
return new TraceAnnotationVisitor(av, p);
}
use of jdk.internal.org.objectweb.asm.AnnotationVisitor in project jdk8u_jdk by JetBrains.
the class TraceMethodVisitor method visitTryCatchAnnotation.
@Override
public AnnotationVisitor visitTryCatchAnnotation(int typeRef, TypePath typePath, String desc, boolean visible) {
Printer p = this.p.visitTryCatchAnnotation(typeRef, typePath, desc, visible);
AnnotationVisitor av = mv == null ? null : mv.visitTryCatchAnnotation(typeRef, typePath, desc, visible);
return new TraceAnnotationVisitor(av, p);
}
use of jdk.internal.org.objectweb.asm.AnnotationVisitor in project Bytecoder by mirkosertic.
the class TraceClassVisitor method visitAnnotation.
@Override
public AnnotationVisitor visitAnnotation(final String desc, final boolean visible) {
Printer p = this.p.visitClassAnnotation(desc, visible);
AnnotationVisitor av = cv == null ? null : cv.visitAnnotation(desc, visible);
return new TraceAnnotationVisitor(av, p);
}
use of jdk.internal.org.objectweb.asm.AnnotationVisitor in project Bytecoder by mirkosertic.
the class TraceMethodVisitor method visitLocalVariableAnnotation.
@Override
public AnnotationVisitor visitLocalVariableAnnotation(int typeRef, TypePath typePath, Label[] start, Label[] end, int[] index, String desc, boolean visible) {
Printer p = this.p.visitLocalVariableAnnotation(typeRef, typePath, start, end, index, desc, visible);
AnnotationVisitor av = mv == null ? null : mv.visitLocalVariableAnnotation(typeRef, typePath, start, end, index, desc, visible);
return new TraceAnnotationVisitor(av, p);
}
use of jdk.internal.org.objectweb.asm.AnnotationVisitor in project Bytecoder by mirkosertic.
the class TraceMethodVisitor method visitInsnAnnotation.
@Override
public AnnotationVisitor visitInsnAnnotation(int typeRef, TypePath typePath, String desc, boolean visible) {
Printer p = this.p.visitInsnAnnotation(typeRef, typePath, desc, visible);
AnnotationVisitor av = mv == null ? null : mv.visitInsnAnnotation(typeRef, typePath, desc, visible);
return new TraceAnnotationVisitor(av, p);
}
Aggregations