// Implementation of the MethodVisitor interface
// ------------------------------------------------------------------------
public AnnotationVisitor visitAnnotation(final String desc,
final boolean visible) {
final AnnotationVisitor av = super.visitAnnotation( desc,
visible );
if ( this.mv != null ) {
((TraceAnnotationVisitor) av).av = this.mv.visitAnnotation( desc,
visible );
}