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 IincInsnNode.
Method Summary
voidaccept(MethodVisitor mv)
AbstractInsnNodeclone(Map labels)
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 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)

clone

public AbstractInsnNode clone(Map labels)

getType

public int getType()