1 17 package org.apache.bcel.generic; 18 19 26 public class RETURN extends ReturnInstruction { 27 28 public RETURN() { 29 super(org.apache.bcel.Constants.RETURN); 30 } 31 32 33 41 public void accept( Visitor v ) { 42 v.visitExceptionThrower(this); 43 v.visitTypedInstruction(this); 44 v.visitStackConsumer(this); 45 v.visitReturnInstruction(this); 46 v.visitRETURN(this); 47 } 48 } 49 | Popular Tags |