public class CheckFieldAdapter extends FieldVisitor
FieldVisitor
that checks that its methods are properly used.api, fv
Modifier | Constructor and Description |
---|---|
|
CheckFieldAdapter(FieldVisitor fieldVisitor)
Constructs a new
CheckFieldAdapter . |
protected |
CheckFieldAdapter(int api,
FieldVisitor fieldVisitor)
Constructs a new
CheckFieldAdapter . |
Modifier and Type | Method and Description |
---|---|
AnnotationVisitor |
visitAnnotation(String descriptor,
boolean visible)
Visits an annotation of the field.
|
void |
visitAttribute(Attribute attribute)
Visits a non standard attribute of the field.
|
void |
visitEnd()
Visits the end of the field.
|
AnnotationVisitor |
visitTypeAnnotation(int typeRef,
TypePath typePath,
String descriptor,
boolean visible)
Visits an annotation on the type of the field.
|
public CheckFieldAdapter(FieldVisitor fieldVisitor)
CheckFieldAdapter
. Subclasses must not use this constructor.
Instead, they must use the CheckFieldAdapter(int, FieldVisitor)
version.fieldVisitor
- the field visitor to which this adapter must delegate calls.IllegalStateException
- If a subclass calls this constructor.protected CheckFieldAdapter(int api, FieldVisitor fieldVisitor)
CheckFieldAdapter
.api
- the ASM API version implemented by this visitor. Must be one of Opcodes.ASM4
, Opcodes.ASM5
or Opcodes.ASM6
.fieldVisitor
- the field visitor to which this adapter must delegate calls.public AnnotationVisitor visitAnnotation(String descriptor, boolean visible)
FieldVisitor
visitAnnotation
in class FieldVisitor
descriptor
- the class descriptor of the annotation class.visible
- true if the annotation is visible at runtime.public AnnotationVisitor visitTypeAnnotation(int typeRef, TypePath typePath, String descriptor, boolean visible)
FieldVisitor
visitTypeAnnotation
in class FieldVisitor
typeRef
- a reference to the annotated type. The sort of this type reference must be
TypeReference.FIELD
. See TypeReference
.typePath
- the path to the annotated type argument, wildcard bound, array element type, or
static inner type within 'typeRef'. May be null if the annotation targets
'typeRef' as a whole.descriptor
- the class descriptor of the annotation class.visible
- true if the annotation is visible at runtime.public void visitAttribute(Attribute attribute)
FieldVisitor
visitAttribute
in class FieldVisitor
attribute
- an attribute.public void visitEnd()
FieldVisitor
visitEnd
in class FieldVisitor
Copyright © 2018. All rights reserved.