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