public final class TraceFieldVisitor extends FieldVisitor
FieldVisitor that prints the fields it visits with a Printer.| Modifier and Type | Field | Description |
|---|---|---|
Printer |
p |
The printer to convert the visited field into text.
|
api, fv| Constructor | Description |
|---|---|
TraceFieldVisitor(FieldVisitor fieldVisitor,
Printer printer) |
Constructs a new
TraceFieldVisitor. |
TraceFieldVisitor(Printer printer) |
Constructs a new
TraceFieldVisitor. |
| Modifier and Type | Method | Description |
|---|---|---|
AnnotationVisitor |
visitAnnotation(java.lang.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,
java.lang.String descriptor,
boolean visible) |
Visits an annotation on the type of the field.
|
public final Printer p
public TraceFieldVisitor(Printer printer)
TraceFieldVisitor.printer - the printer to convert the visited field into text.public TraceFieldVisitor(FieldVisitor fieldVisitor, Printer printer)
TraceFieldVisitor.fieldVisitor - the field visitor to which to delegate calls. May be null.printer - the printer to convert the visited field into text.public AnnotationVisitor visitAnnotation(java.lang.String descriptor, boolean visible)
FieldVisitorvisitAnnotation in class FieldVisitordescriptor - the class descriptor of the annotation class.visible - true if the annotation is visible at runtime.public AnnotationVisitor visitTypeAnnotation(int typeRef, TypePath typePath, java.lang.String descriptor, boolean visible)
FieldVisitorvisitTypeAnnotation in class FieldVisitortypeRef - 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)
FieldVisitorvisitAttribute in class FieldVisitorattribute - an attribute.public void visitEnd()
FieldVisitorvisitEnd in class FieldVisitor