|
Oracle Fusion Middleware Java API Reference for Oracle TopLink (Deprecated) 11g Release 1 (11.1.1) B32476-04 |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectoracle.toplink.libraries.asm.tree.FieldNode
public class FieldNode
A node that represents a field.
| Field Summary | |
|---|---|
int |
access
The field's access flags (see Constants). |
Attribute |
attrs
The non standard attributes of the field. |
java.lang.String |
desc
The field's descriptor (see Type). |
java.lang.String |
name
The field's name. |
java.lang.Object |
value
The field's initial value. |
| Constructor Summary | |
|---|---|
FieldNode(int access,
java.lang.String name,
java.lang.String desc,
java.lang.Object value,
Attribute attrs)
Constructs a new FieldNode object. |
|
| Method Summary | |
|---|---|
void |
accept(ClassVisitor cv)
Makes the given class visitor visit this field. |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public int access
FieldNodeConstants). This
field also indicates if the field is synthetic and/or deprecated.
public java.lang.String name
FieldNode
public java.lang.String desc
FieldNodeType).
public java.lang.Object value
FieldNodeInteger, a Float, a Long,
a Double or a String.
public Attribute attrs
FieldNode
| Constructor Detail |
|---|
public FieldNode(int access,
java.lang.String name,
java.lang.String desc,
java.lang.Object value,
Attribute attrs)
FieldNode object.
access - the field's access flags (see Constants). This parameter also indicates if the
field is synthetic and/or deprecated.name - the field's name.desc - the field's descriptor (see Type).value - the field's initial value. This parameter, which may be
null if the field does not have an initial value, must be an
Integer, a Float, a
Long, a Double or a
String.attrs - the non standard attributes of the field.| Method Detail |
|---|
public void accept(ClassVisitor cv)
cv - a class visitor.
|
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||