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