org.objectweb.asm.tree
Class IincInsnNode
public class IincInsnNode
A node that represents an IINC instruction.
- Eric Bruneton
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.
accept
public void accept(CodeVisitor cv)
Makes the given code visitor visit this instruction.
- accept in interface AbstractInsnNode
cv
- a code visitor.