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