final class FieldWriter extends FieldVisitor
FieldVisitor
that generates Java fields in bytecode form.Modifier and Type | Field and Description |
---|---|
private int |
access
Access flags of this field.
|
private AnnotationWriter |
anns
The runtime visible annotations of this field.
|
private Attribute |
attrs
The non standard attributes of this field.
|
private ClassWriter |
cw
The class writer to which this field must be added.
|
private int |
desc
The index of the constant pool item that contains the descriptor of this
field.
|
private AnnotationWriter |
ianns
The runtime invisible annotations of this field.
|
private AnnotationWriter |
itanns
The runtime invisible type annotations of this field.
|
private int |
name
The index of the constant pool item that contains the name of this
method.
|
private int |
signature
The index of the constant pool item that contains the signature of this
field.
|
private AnnotationWriter |
tanns
The runtime visible type annotations of this field.
|
private int |
value
The index of the constant pool item that contains the constant value of
this field.
|
api, fv
Constructor and Description |
---|
FieldWriter(ClassWriter cw,
int access,
java.lang.String name,
java.lang.String desc,
java.lang.String signature,
java.lang.Object value)
Constructs a new
FieldWriter . |
Modifier and Type | Method and Description |
---|---|
(package private) int |
getSize()
Returns the size of this field.
|
(package private) void |
put(ByteVector out)
Puts the content of this field into the given byte vector.
|
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.
|
AnnotationVisitor |
visitTypeAnnotation(int typeRef,
TypePath typePath,
java.lang.String desc,
boolean visible)
Visits an annotation on the type of the field.
|
private final ClassWriter cw
private final int access
private final int name
private final int desc
private int signature
private int value
private AnnotationWriter anns
private AnnotationWriter ianns
private AnnotationWriter tanns
private AnnotationWriter itanns
private Attribute attrs
FieldWriter(ClassWriter cw, int access, java.lang.String name, java.lang.String desc, java.lang.String signature, java.lang.Object value)
FieldWriter
.public AnnotationVisitor visitAnnotation(java.lang.String desc, boolean visible)
FieldVisitor
visitAnnotation
in class FieldVisitor
desc
- 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 desc, boolean visible)
FieldVisitor
visitTypeAnnotation
in class FieldVisitor
typeRef
- a reference to the annotated type. The sort of this type
reference must be 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.desc
- the class descriptor of the annotation class.visible
- true if the annotation is visible at runtime.public void visitAttribute(Attribute attr)
FieldVisitor
visitAttribute
in class FieldVisitor
attr
- an attribute.public void visitEnd()
FieldVisitor
visitEnd
in class FieldVisitor
int getSize()
void put(ByteVector out)
out
- where the content of this field must be put.