org.objectweb.asm.tree
Class IincInsnNode
public class IincInsnNode
A node that represents an IINC instruction.
int | incr - Amount to increment the local variable by.
|
int | var - Index of the local variable to be incremented.
|
FIELD_INSN , FRAME , IINC_INSN , INSN , INT_INSN , JUMP_INSN , LABEL , LDC_INSN , LINE , LOOKUPSWITCH_INSN , METHOD_INSN , MULTIANEWARRAY_INSN , TABLESWITCH_INSN , TYPE_INSN , VAR_INSN , opcode |
incr
public int incr
Amount to increment the local variable by.
var
public int var
Index of the local variable to be incremented.
IincInsnNode
public IincInsnNode(int var,
int incr)
var
- index of the local variable to be incremented.incr
- increment amount to increment the local variable by.