1 17 package org.apache.bcel.generic; 18 19 27 public class POP2 extends StackInstruction implements PopInstruction { 28 29 public POP2() { 30 super(org.apache.bcel.Constants.POP2); 31 } 32 33 34 42 public void accept( Visitor v ) { 43 v.visitStackConsumer(this); 44 v.visitPopInstruction(this); 45 v.visitStackInstruction(this); 46 v.visitPOP2(this); 47 } 48 } 49 | Popular Tags |