org.objectweb.asm.tree

Class IincInsnNode

public class IincInsnNode extends AbstractInsnNode

A node that represents an IINC instruction.

Author: Eric Bruneton

Field Summary
intincr
Amount to increment the local variable by.
intvar
Index of the local variable to be incremented.
Constructor Summary
IincInsnNode(int var, int incr)
Constructs a new {@link IincInsnNode}.
Method Summary
voidaccept(MethodVisitor mv)
intgetType()

Field Detail

incr

public int incr
Amount to increment the local variable by.

var

public int var
Index of the local variable to be incremented.

Constructor Detail

IincInsnNode

public IincInsnNode(int var, int incr)
Constructs a new {@link IincInsnNode}.

Parameters: var index of the local variable to be incremented. incr increment amount to increment the local variable by.

Method Detail

accept

public void accept(MethodVisitor mv)

getType

public int getType()