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