1 17 package org.apache.bcel.generic; 18 19 26 public class SASTORE extends ArrayInstruction implements StackConsumer { 27 28 public SASTORE() { 29 super(org.apache.bcel.Constants.SASTORE); 30 } 31 32 33 41 public void accept( Visitor v ) { 42 v.visitStackConsumer(this); 43 v.visitExceptionThrower(this); 44 v.visitTypedInstruction(this); 45 v.visitArrayInstruction(this); 46 v.visitSASTORE(this); 47 } 48 } 49 | Popular Tags |