FileDocCategorySizeDatePackage
IincInsnNode.javaAPI DocGlassfish v2 API2540Thu Mar 02 11:51:16 GMT 2006oracle.toplink.libraries.asm.tree

IincInsnNode

public class IincInsnNode extends AbstractInsnNode
A node that represents an IINC instruction.
author
Eric Bruneton

Fields Summary
public int
var
Index of the local variable to be incremented.
public int
incr
Amount to increment the local variable by.
Constructors Summary
public IincInsnNode(int var, int incr)
Constructs a new {@link IincInsnNode IincInsnNode} node.

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

    super(Constants.IINC);
    this.var = var;
    this.incr = incr;
  
Methods Summary
public voidaccept(oracle.toplink.libraries.asm.CodeVisitor cv)

    cv.visitIincInsn(var, incr);