Uses of Class
org.apache.bcel.generic.ReturnInstruction

Packages that use ReturnInstruction
org.apache.bcel.generic This package contains the "generic" part of the Byte Code Engineering Library, i.e., classes to dynamically modify class objects and byte code instructions.  
org.apache.bcel.verifier.structurals Provides a PassVerifier class mostly used internally by JustIce, yielding a control flow graph for public use as a nice side effect.  
 

Uses of ReturnInstruction in org.apache.bcel.generic
 

Subclasses of ReturnInstruction in org.apache.bcel.generic
 class ARETURN
          ARETURN - Return reference from method Stack: ..., objectref -> <empty>
 class DRETURN
          DRETURN - Return double from method Stack: ..., value.word1, value.word2 -> <empty>
 class FRETURN
          FRETURN - Return float from method Stack: ..., value -> <empty>
 class IRETURN
          IRETURN - Return int from method Stack: ..., value -> <empty>
 class LRETURN
          LRETURN - Return long from method Stack: ..., value.word1, value.word2 -> <empty>
 class RETURN
          RETURN - Return from void method Stack: ...
 

Fields in org.apache.bcel.generic declared as ReturnInstruction
static ReturnInstruction InstructionConstants.IRETURN
           
static ReturnInstruction InstructionConstants.LRETURN
           
static ReturnInstruction InstructionConstants.FRETURN
           
static ReturnInstruction InstructionConstants.DRETURN
           
static ReturnInstruction InstructionConstants.ARETURN
           
static ReturnInstruction InstructionConstants.RETURN
           
 

Methods in org.apache.bcel.generic that return ReturnInstruction
static ReturnInstruction InstructionFactory.createReturn(Type type)
          Create typed return
 

Methods in org.apache.bcel.generic with parameters of type ReturnInstruction
 void Visitor.visitReturnInstruction(ReturnInstruction obj)
           
 void EmptyVisitor.visitReturnInstruction(ReturnInstruction obj)
           
 

Uses of ReturnInstruction in org.apache.bcel.verifier.structurals
 

Methods in org.apache.bcel.verifier.structurals with parameters of type ReturnInstruction
 void InstConstraintVisitor.visitReturnInstruction(ReturnInstruction o)
          Assures the generic preconditions of a ReturnInstruction instance.
 



Copyright © 2002-2003 Apache Software Foundation. All Rights Reserved.