public class CheckFieldAdapter extends FieldVisitor
FieldVisitor that checks that its methods are properly used.api, fv| 限定符 | 构造器和说明 |
|---|---|
|
CheckFieldAdapter(FieldVisitor fv)
Constructs a new
CheckFieldAdapter. |
protected |
CheckFieldAdapter(int api,
FieldVisitor fv)
Constructs a new
CheckFieldAdapter. |
| 限定符和类型 | 方法和说明 |
|---|---|
AnnotationVisitor |
visitAnnotation(java.lang.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(java.lang.String desc, boolean visible)
FieldVisitorvisitAnnotation 在类中 FieldVisitordesc - the class descriptor of the annotation class.visible - true if the annotation is visible at runtime.public void visitAttribute(Attribute attr)
FieldVisitorvisitAttribute 在类中 FieldVisitorattr - an attribute.public void visitEnd()
FieldVisitorvisitEnd 在类中 FieldVisitor