FieldInsnNodepublic class FieldInsnNode extends AbstractInsnNode A node that represents a field instruction. A field instruction is an
instruction that loads or stores the value of a field of an object. |
Fields Summary |
---|
public String | ownerThe internal name of the field's owner class (see {@link
oracle.toplink.libraries.asm.Type#getInternalName() getInternalName}). | public String | nameThe field's name. | public String | descThe field's descriptor (see {@link oracle.toplink.libraries.asm.Type Type}). |
Constructors Summary |
---|
public FieldInsnNode(int opcode, String owner, String name, String desc)Constructs a new {@link FieldInsnNode FieldInsnNode} object.
super(opcode);
this.owner = owner;
this.name = name;
this.desc = desc;
|
|