|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.ow2.asmdex.FieldVisitor
public abstract class FieldVisitor
A visitor to visit a Dalvik field. The methods of this interface must be called
in the following order: ( visitAnnotation |
visitAttribute )* visitEnd.
Changes with ASM :
| 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 fv)
Constructs a new FieldVisitor. |
|
| Method Summary | |
|---|---|
AnnotationVisitor |
visitAnnotation(java.lang.String desc,
boolean visible)
Visits an annotation of the field. |
void |
visitAttribute(java.lang.Object attr)
Visits a non standard attribute of the field. |
void |
visitEnd()
Visits the end of the field. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected FieldVisitor fv
protected final int api
| Constructor Detail |
|---|
public FieldVisitor(int api)
FieldVisitor.
public FieldVisitor(int api,
FieldVisitor fv)
FieldVisitor.
fv - the field visitor to which this visitor must delegate method
calls. May be null.| Method Detail |
|---|
public AnnotationVisitor visitAnnotation(java.lang.String desc,
boolean visible)
desc - the class descriptor of the annotation class.visible - true if the annotation is visible at runtime.
public void visitAttribute(java.lang.Object attr)
attr - an attribute.public void visitEnd()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||