Oracle Fusion Middleware Java API Reference for Oracle TopLink (Deprecated)
11g Release 1 (11.1.1)

B32476-04

oracle.toplink.libraries.asm.tree
Class IincInsnNode

java.lang.Object
  extended by oracle.toplink.libraries.asm.tree.AbstractInsnNode
      extended by oracle.toplink.libraries.asm.tree.IincInsnNode

public class IincInsnNode
extends AbstractInsnNode

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.
 
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 oracle.toplink.libraries.asm.tree.AbstractInsnNode
getOpcode
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

var

public int var
Description copied from class: IincInsnNode
Index of the local variable to be incremented.


incr

public int incr
Description copied from class: IincInsnNode
Amount to increment the local variable by.

Constructor Detail

IincInsnNode

public IincInsnNode(int var,
                    int incr)
Constructs a new IincInsnNode node.

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(CodeVisitor cv)
Description copied from class: oracle.toplink.libraries.asm.tree.AbstractInsnNode
Makes the given code visitor visit this instruction.

Specified by:
accept in class AbstractInsnNode
Parameters:
cv - a code visitor.

Copyright © 1998, 2012, Oracle. All Rights Reserved.