final class FieldWriter extends java.lang.Object implements FieldVisitor
FieldVisitor that generates Java fields in bytecode form.| Modifier and Type | Field and Description | 
|---|---|
| private int | accessAccess flags of this field. | 
| private AnnotationWriter | annsThe runtime visible annotations of this field. | 
| private Attribute | attrsThe non standard attributes of this field. | 
| private ClassWriter | cwThe class writer to which this field must be added. | 
| private int | descThe index of the constant pool item that contains the descriptor of this
 field. | 
| private AnnotationWriter | iannsThe runtime invisible annotations of this field. | 
| private int | nameThe index of the constant pool item that contains the name of this
 method. | 
| (package private) FieldWriter | nextNext field writer (see  firstField). | 
| private int | signatureThe index of the constant pool item that contains the signature of this
 field. | 
| private int | valueThe index of the constant pool item that contains the constant value of
 this field. | 
| Modifier | Constructor and Description | 
|---|---|
| protected  | 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. | 
FieldWriter next
firstField).private ClassWriter cw
private int access
private int name
private int desc
private int signature
private int value
private AnnotationWriter anns
private AnnotationWriter ianns
private Attribute attrs
protected 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)
FieldVisitorvisitAnnotation in interface FieldVisitordesc - the class descriptor of the annotation class.visible - true if the annotation is visible at runtime.public void visitAttribute(Attribute attr)
FieldVisitorvisitAttribute in interface FieldVisitorattr - an attribute.public void visitEnd()
FieldVisitorvisitEnd in interface FieldVisitorint getSize()
void put(ByteVector out)
out - where the content of this field must be put.