Package ftbsc.lll.utils.nodes
Class FieldProxyInsnNode
java.lang.Object
org.objectweb.asm.tree.AbstractInsnNode
org.objectweb.asm.tree.FieldInsnNode
ftbsc.lll.utils.nodes.FieldProxyInsnNode
public class FieldProxyInsnNode
extends org.objectweb.asm.tree.FieldInsnNode
Overrides the
FieldInsnNode to add a constructor
taking in a FieldProxy.- Since:
- 0.3.0
-
Field Summary
Fields inherited from class org.objectweb.asm.tree.FieldInsnNode
desc, name, ownerFields inherited from class org.objectweb.asm.tree.AbstractInsnNode
FIELD_INSN, FRAME, IINC_INSN, INSN, INT_INSN, invisibleTypeAnnotations, INVOKE_DYNAMIC_INSN, JUMP_INSN, LABEL, LDC_INSN, LINE, LOOKUPSWITCH_INSN, METHOD_INSN, MULTIANEWARRAY_INSN, opcode, TABLESWITCH_INSN, TYPE_INSN, VAR_INSN, visibleTypeAnnotations -
Constructor Summary
ConstructorsConstructorDescriptionFieldProxyInsnNode(int opcode, FieldProxy f) Constructs a newFieldInsnNodestarting from aFieldProxy. -
Method Summary
Methods inherited from class org.objectweb.asm.tree.FieldInsnNode
accept, clone, getType, setOpcodeMethods inherited from class org.objectweb.asm.tree.AbstractInsnNode
acceptAnnotations, cloneAnnotations, getNext, getOpcode, getPrevious
-
Constructor Details
-
FieldProxyInsnNode
Constructs a newFieldInsnNodestarting from aFieldProxy.- Parameters:
opcode- the opcode, must be one of GETSTATIC, PUTSTATIC, GETFIELD or PUTFIELDf- aFieldProxyrepresenting the field to call
-