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