org.objectweb.asm.tree
public class IincInsnNode extends AbstractInsnNode
| Field Summary | |
|---|---|
| int | incr
Amount to increment the local variable by. |
| int | var
Index of the local variable to be incremented. |
| Constructor Summary | |
|---|---|
| IincInsnNode(int var, int incr)
Constructs a new IincInsnNode.
| |
| Method Summary | |
|---|---|
| void | accept(MethodVisitor mv) |
| AbstractInsnNode | clone(Map labels) |
| int | getType() |
Parameters: var index of the local variable to be incremented. incr increment amount to increment the local variable by.