1 package com.sun.org.apache.bcel.internal.generic; 2 3 56 57 64 public class SALOAD extends ArrayInstruction implements StackProducer { 65 public SALOAD() { 66 super(com.sun.org.apache.bcel.internal.Constants.SALOAD); 67 } 68 69 70 78 public void accept(Visitor v) { 79 v.visitStackProducer(this); 80 v.visitExceptionThrower(this); 81 v.visitTypedInstruction(this); 82 v.visitArrayInstruction(this); 83 v.visitSALOAD(this); 84 } 85 } 86 | Popular Tags |