1 17 package org.apache.bcel.generic; 18 19 26 public class ARETURN extends ReturnInstruction { 27 28 31 public ARETURN() { 32 super(org.apache.bcel.Constants.ARETURN); 33 } 34 35 36 44 public void accept( Visitor v ) { 45 v.visitExceptionThrower(this); 46 v.visitTypedInstruction(this); 47 v.visitStackConsumer(this); 48 v.visitReturnInstruction(this); 49 v.visitARETURN(this); 50 } 51 } 52 | Popular Tags |