public class ClassChecker.ArrayAttribute extends Object implements org.objectweb.asm.AnnotationVisitor
| Constructor and Description |
|---|
ClassChecker.ArrayAttribute(String name)
Creates an array attribute.
|
| Modifier and Type | Method and Description |
|---|---|
void |
visit(org.objectweb.asm.AnnotationVisitor av)
Recreates the visited array attribute.
|
void |
visit(String arg0,
Object arg1)
Visits the content of the array.
|
org.objectweb.asm.AnnotationVisitor |
visitAnnotation(String arg0,
String arg1)
Visits the content of the array.
|
org.objectweb.asm.AnnotationVisitor |
visitArray(String arg0)
Visits the content of the array.
|
void |
visitEnd()
End of the array attribute visit.
|
void |
visitEnum(String arg0,
String arg1,
String arg2)
Visits the content of the array.
|
public ClassChecker.ArrayAttribute(String name)
name - the name of the attribute.public void visit(String arg0, Object arg1)
visit in interface org.objectweb.asm.AnnotationVisitorarg0 - nullarg1 - the valueAnnotationVisitor.visit(java.lang.String, java.lang.Object)public org.objectweb.asm.AnnotationVisitor visitAnnotation(String arg0, String arg1)
visitAnnotation in interface org.objectweb.asm.AnnotationVisitorarg0 - nullarg1 - the annotation descriptorClassChecker.AnnotationDescriptor which creates a copy of
the contained annotation.AnnotationVisitor.visitAnnotation(String, String)public org.objectweb.asm.AnnotationVisitor visitArray(String arg0)
visitArray in interface org.objectweb.asm.AnnotationVisitorarg0 - nullArrayDescriptor which creates a copy of
the contained array.AnnotationVisitor.visitArray(String)public void visitEnd()
visitEnd in interface org.objectweb.asm.AnnotationVisitorAnnotationVisitor.visitEnd()public void visitEnum(String arg0, String arg1, String arg2)
visitEnum in interface org.objectweb.asm.AnnotationVisitorarg0 - nullarg1 - the enumeration descriptorarg2 - the valueAnnotationVisitor.visitEnum(String, String, String)public void visit(org.objectweb.asm.AnnotationVisitor av)
av - the annotation visitor on which the array attribute
needs to be injected.Copyright © 2006-2013 The Apache Software Foundation. All Rights Reserved.