Main Page   Packages   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members  

LSTORE.java

00001 package de.fub.bytecode.generic;
00002 
00003 /** 
00004  * LSTORE - Store long into local variable
00005  * <PRE>Stack: ..., value.word1, value.word2 -&gt; ... </PRE>
00006  *
00007  * @version $Id: LSTORE.java,v 1.1.1.1 2002/01/24 03:41:41 pserver Exp $
00008  * @author  <A HREF="http://www.inf.fu-berlin.de/~dahm">M. Dahm</A>
00009  */
00010 public class LSTORE extends LocalVariableInstruction
00011   implements PopInstruction, StoreInstruction {
00012   /**
00013    * Empty constructor needed for the Class.newInstance() statement in
00014    * Instruction.readInstruction(). Not to be used otherwise.
00015    */
00016   LSTORE() {
00017     super(de.fub.bytecode.Constants.LSTORE, de.fub.bytecode.Constants.LSTORE_0);
00018   }  
00019   public LSTORE(int n) {
00020     super(de.fub.bytecode.Constants.LSTORE, de.fub.bytecode.Constants.LSTORE_0, n);
00021   }  
00022   /**
00023    * Call corresponding visitor method(s). The order is:
00024    * Call visitor methods of implemented interfaces first, then
00025    * call methods according to the class hierarchy in descending order,
00026    * i.e., the most specific visitXXX() call comes last.
00027    *
00028    * @param v Visitor object
00029    */
00030   public void accept(Visitor v) {
00031     v.visitStackConsumer(this);
00032     v.visitPopInstruction(this);
00033     v.visitStoreInstruction(this);
00034     v.visitTypedInstruction(this);
00035     v.visitLocalVariableInstruction(this);
00036     v.visitLSTORE(this);
00037   }  
00038 }

Generated at Thu Feb 7 06:50:09 2002 for Bandera by doxygen1.2.10 written by Dimitri van Heesch, © 1997-2001