01: /*
02: * Copyright 2001-2007 Geert Bevin <gbevin[remove] at uwyn dot com>
03: * Distributed under the terms of either:
04: * - the common development and distribution license (CDDL), v1.0; or
05: * - the GNU Lesser General Public License, v2.1 or later
06: * $Id: NoOpAnnotationVisitor.java 3677 2007-03-01 09:47:39Z gbevin $
07: */
08: package com.uwyn.rife.continuations.instrument;
09:
10: import com.uwyn.rife.asm.AnnotationVisitor;
11:
12: class NoOpAnnotationVisitor implements AnnotationVisitor {
13: public void visit(String name, Object value) {
14: }
15:
16: public void visitEnum(String name, String desc, String value) {
17: }
18:
19: public AnnotationVisitor visitAnnotation(String name, String desc) {
20: return this ;
21: }
22:
23: public AnnotationVisitor visitArray(String name) {
24: return this ;
25: }
26:
27: public void visitEnd() {
28: }
29: }
|