1 17 package org.apache.bcel.generic; 18 19 26 public abstract class StoreInstruction extends LocalVariableInstruction implements PopInstruction { 27 28 33 StoreInstruction(short canon_tag, short c_tag) { 34 super(canon_tag, c_tag); 35 } 36 37 38 43 protected StoreInstruction(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.visitStackConsumer(this); 58 v.visitPopInstruction(this); 59 v.visitTypedInstruction(this); 60 v.visitLocalVariableInstruction(this); 61 v.visitStoreInstruction(this); 62 } 63 } 64 | Popular Tags |