1 package com.sun.org.apache.bcel.internal.generic; 2 3 56 57 64 public class IALOAD extends ArrayInstruction implements StackProducer { 65 68 public IALOAD() { 69 super(com.sun.org.apache.bcel.internal.Constants.IALOAD); 70 } 71 72 73 81 public void accept(Visitor v) { 82 v.visitStackProducer(this); 83 v.visitExceptionThrower(this); 84 v.visitTypedInstruction(this); 85 v.visitArrayInstruction(this); 86 v.visitIALOAD(this); 87 } 88 } 89 | Popular Tags |