public class CheckFieldAdapter extends FieldVisitor
FieldVisitor that checks that its methods are properly used.api, fv| Modifier | Constructor and Description |
|---|---|
|
CheckFieldAdapter(FieldVisitor fv)
Constructs a new
CheckFieldAdapter. |
protected |
CheckFieldAdapter(int api,
FieldVisitor fv)
Constructs a new
CheckFieldAdapter. |
| Modifier and Type | Method and Description |
|---|---|
AnnotationVisitor |
visitAnnotation(String desc,
boolean visible)
Visits an annotation of the field.
|
void |
visitAttribute(Attribute attr)
Visits a non standard attribute of the field.
|
void |
visitEnd()
Visits the end of the field.
|
public CheckFieldAdapter(FieldVisitor fv)
CheckFieldAdapter. Subclasses must not use
this constructor. Instead, they must use the
CheckFieldAdapter(int, FieldVisitor) version.fv - the field visitor to which this adapter must delegate calls.protected CheckFieldAdapter(int api,
FieldVisitor fv)
CheckFieldAdapter.api - the ASM API version implemented by this visitor. Must be one
of Opcodes.ASM4.fv - the field visitor to which this adapter must delegate calls.public AnnotationVisitor visitAnnotation(String desc, boolean visible)
FieldVisitorvisitAnnotation in class FieldVisitordesc - the class descriptor of the annotation class.visible - true if the annotation is visible at runtime.public void visitAttribute(Attribute attr)
FieldVisitorvisitAttribute in class FieldVisitorattr - an attribute.public void visitEnd()
FieldVisitorvisitEnd in class FieldVisitor