1 17 package org.apache.bcel.generic; 18 19 26 public abstract class LoadInstruction extends LocalVariableInstruction implements PushInstruction { 27 28 33 LoadInstruction(short canon_tag, short c_tag) { 34 super(canon_tag, c_tag); 35 } 36 37 38 43 protected LoadInstruction(short opcode, short c_tag, int n) { 44 super(opcode, c_tag, n); 45 } 46 47 48 56 public void accept( Visitor v ) { 57 v.visitStackProducer(this); 58 v.visitPushInstruction(this); 59 v.visitTypedInstruction(this); 60 v.visitLocalVariableInstruction(this); 61 v.visitLoadInstruction(this); 62 } 63 } 64 | Popular Tags |