FileDocCategorySizeDatePackage
ISTORE.javaAPI DocJava SE 6 API3900Tue Jun 10 00:22:20 BST 2008com.sun.org.apache.bcel.internal.generic

ISTORE

public class ISTORE extends StoreInstruction
ISTORE - Store int from stack into local variable
Stack: ..., value -> ... 
version
$Id: ISTORE.java,v 1.1.2.1 2005/07/31 23:44:41 jeffsuttor Exp $
author
M. Dahm

Fields Summary
Constructors Summary
ISTORE()
Empty constructor needed for the Class.newInstance() statement in Instruction.readInstruction(). Not to be used otherwise.

    super(com.sun.org.apache.bcel.internal.Constants.ISTORE, com.sun.org.apache.bcel.internal.Constants.ISTORE_0);
  
public ISTORE(int n)
Store int into local variable

param
n index of local variable

    super(com.sun.org.apache.bcel.internal.Constants.ISTORE, com.sun.org.apache.bcel.internal.Constants.ISTORE_0, n);
  
Methods Summary
public voidaccept(com.sun.org.apache.bcel.internal.generic.Visitor v)
Call corresponding visitor method(s). The order is: Call visitor methods of implemented interfaces first, then call methods according to the class hierarchy in descending order, i.e., the most specific visitXXX() call comes last.

param
v Visitor object

    super.accept(v);
    v.visitISTORE(this);