|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.mvel2.asm.FieldVisitor
public abstract class FieldVisitor
A visitor to visit a Java field. The methods of this class must be called in the following order:
( visitAnnotation | visitTypeAnnotation | visitAttribute )* visitEnd.
| Field Summary | |
|---|---|
protected int |
api
The ASM API version implemented by this visitor. |
protected FieldVisitor |
fv
The field visitor to which this visitor must delegate method calls. |
| Constructor Summary | |
|---|---|
FieldVisitor(int api)
Constructs a new FieldVisitor. |
|
FieldVisitor(int api,
FieldVisitor fieldVisitor)
Constructs a new FieldVisitor. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected final int api
Opcodes.ASM4, Opcodes.ASM5, Opcodes.ASM6 or Opcodes.ASM7.
protected FieldVisitor fv
| Constructor Detail |
|---|
public FieldVisitor(int api)
FieldVisitor.
api - the ASM API version implemented by this visitor. Must be one of Opcodes.ASM4, Opcodes.ASM5, Opcodes.ASM6 or Opcodes.ASM7.
public FieldVisitor(int api,
FieldVisitor fieldVisitor)
FieldVisitor.
api - the ASM API version implemented by this visitor. Must be one of Opcodes.ASM4, Opcodes.ASM5, Opcodes.ASM6 or Opcodes.ASM7.fieldVisitor - the field visitor to which this visitor must delegate method calls. May be
null.| Method Detail |
|---|
public AnnotationVisitor visitAnnotation(String descriptor,
boolean visible)
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)
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)
attribute - an attribute.public void visitEnd()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||