| java.lang.Object tide.bytecode.asm.AnnotationVisitorAd
debug | protected boolean debug(Code) | | |
AnnotationVisitorAd | public AnnotationVisitorAd()(Code) | | |
visitAnnotation | public AnnotationVisitor visitAnnotation(String name, String desc)(Code) | | Visits a nested annotation value of the annotation.
Parameters: name - the value name. Parameters: desc - the class descriptor of the nested annotation class. a non null visitor to visit the actual nested annotation value.The nested annotation value must be fully visited beforecalling other methods on this annotation visitor. |
visitArray | public AnnotationVisitor visitArray(String name)(Code) | | Visits an array value of the annotation. Note that arrays of primitive
types (such as byte, boolean, short, char, int, long, float or double)
can be passed as value to
AnnotationVisitorAd.visit visit . This is what
ClassReader does.
Parameters: name - the value name. a non null visitor to visit the actual array value elements. The'name' parameters passed to the methods of this visitor areignored. All the array values must be visited before callingother methods on this annotation visitor. |
visitEnd | public void visitEnd()(Code) | | Visits the end of the annotation.
|
visitEnum | public void visitEnum(String name, String desc, String value)(Code) | | Visits an enumeration value of the annotation.
Parameters: name - the value name. Parameters: desc - the class descriptor of the enumeration class. Parameters: value - the actual enumeration value. |
|
|