|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.logicalcobwebs.asm.tree.AbstractInsnNode org.logicalcobwebs.asm.tree.IincInsnNode
public class IincInsnNode
A node that represents an IINC instruction.
Field Summary | |
---|---|
int |
incr
Amount to increment the local variable by. |
int |
var
Index of the local variable to be incremented. |
Fields inherited from class org.logicalcobwebs.asm.tree.AbstractInsnNode |
---|
opcode |
Constructor Summary | |
---|---|
IincInsnNode(int var,
int incr)
Constructs a new IincInsnNode node. |
Method Summary | |
---|---|
void |
accept(CodeVisitor cv)
Makes the given code visitor visit this instruction. |
Methods inherited from class org.logicalcobwebs.asm.tree.AbstractInsnNode |
---|
getOpcode |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public int var
public int incr
Constructor Detail |
---|
public IincInsnNode(int var, int incr)
IincInsnNode
node.
var
- index of the local variable to be incremented.incr
- increment amount to increment the local variable by.Method Detail |
---|
public void accept(CodeVisitor cv)
AbstractInsnNode
accept
in class AbstractInsnNode
cv
- a code visitor.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |