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