FieldNodepublic class FieldNode extends Object A node that represents a field. |
Fields Summary |
---|
public int | accessThe field's access flags (see {@link oracle.toplink.libraries.asm.Constants}). This
field also indicates if the field is synthetic and/or deprecated. | public String | nameThe field's name. | public String | descThe field's descriptor (see {@link oracle.toplink.libraries.asm.Type Type}). | public Object | valueThe field's initial value. This field, which may be null if the
field does not have an initial value, must be an {@link java.lang.Integer
Integer}, a {@link java.lang.Float Float}, a {@link java.lang.Long Long},
a {@link java.lang.Double Double} or a {@link String String}. | public Attribute | attrsThe non standard attributes of the field. |
Constructors Summary |
---|
public FieldNode(int access, String name, String desc, Object value, Attribute attrs)Constructs a new {@link FieldNode FieldNode} object.
this.access = access;
this.name = name;
this.desc = desc;
this.value = value;
this.attrs = attrs;
|
|