00001 package de.fub.bytecode.generic;
00002
00003
00004
00005
00006
00007
00008
00009
00010 public class SALOAD extends ArrayInstruction implements StackProducer {
00011 public SALOAD() {
00012 super(de.fub.bytecode.Constants.SALOAD);
00013 }
00014
00015
00016
00017
00018
00019
00020
00021
00022 public void accept(Visitor v) {
00023 v.visitStackProducer(this);
00024 v.visitExceptionThrower(this);
00025 v.visitTypedInstruction(this);
00026 v.visitArrayInstruction(this);
00027 v.visitSALOAD(this);
00028 }
00029 }