| Prev Class | Next Class | Frames | No Frames |
| Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Objectorg.objectweb.asm.tree.AbstractInsnNodeorg.objectweb.asm.tree.IincInsnNodepublic class IincInsnNodeextends AbstractInsnNodeField Summary | |
int |
|
int |
|
Fields inherited from class org.objectweb.asm.tree.AbstractInsnNode | |
opcode | |
Constructor Summary | |
| |
Method Summary | |
void |
|
Methods inherited from class org.objectweb.asm.tree.AbstractInsnNode | |
accept, getOpcode | |
public int incr
Amount to increment the local variable by.
public int var
Index of the local variable to be incremented.
public IincInsnNode(int var,
int incr)Constructs a newIincInsnNodenode.
- Parameters:
var- index of the local variable to be incremented.incr- increment amount to increment the local variable by.
public void accept(CodeVisitor cv)
Makes the given code visitor visit this instruction.
- Overrides:
- accept in interface AbstractInsnNode
- Parameters:
cv- a code visitor.