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.
|
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.