| java.lang.Object com.tc.asm.tree.AbstractInsnNode com.tc.asm.tree.FieldInsnNode
FieldInsnNode | public class FieldInsnNode extends AbstractInsnNode (Code) | | 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.
author: Eric Bruneton |
FieldInsnNode | public FieldInsnNode(int opcode, String owner, String name, String desc)(Code) | | Constructs a new
FieldInsnNode .
Parameters: opcode - the opcode of the type instruction to be constructed. Thisopcode must be GETSTATIC, PUTSTATIC, GETFIELD or PUTFIELD. Parameters: owner - the internal name of the field's owner class (seecom.tc.asm.Type.getInternalName getInternalName). Parameters: name - the field's name. Parameters: desc - the field's descriptor (see com.tc.asm.Type). |
getType | public int getType()(Code) | | |
setOpcode | public void setOpcode(int opcode)(Code) | | Sets the opcode of this instruction.
Parameters: opcode - the new instruction opcode. This opcode must be GETSTATIC,PUTSTATIC, GETFIELD or PUTFIELD. |
|
|