1 package com.sun.org.apache.bcel.internal.generic; 2 3 56 57 64 public abstract class LoadInstruction extends LocalVariableInstruction 65 implements PushInstruction 66 { 67 72 LoadInstruction(short canon_tag, short c_tag) { 73 super(canon_tag, c_tag); 74 } 75 76 81 protected LoadInstruction(short opcode, short c_tag, int n) { 82 super(opcode, c_tag, n); 83 } 84 85 93 public void accept(Visitor v) { 94 v.visitStackProducer(this); 95 v.visitPushInstruction(this); 96 v.visitTypedInstruction(this); 97 v.visitLocalVariableInstruction(this); 98 v.visitLoadInstruction(this); 99 } 100 } 101 102 | Popular Tags |