Package | Description |
---|---|
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.
|
Modifier and Type | Class | Description |
---|---|---|
class |
ARETURN |
ARETURN - Return reference from method
|
class |
DRETURN |
DRETURN - Return double from method
|
class |
FRETURN |
FRETURN - Return float from method
|
class |
IRETURN |
IRETURN - Return int from method
|
class |
LRETURN |
LRETURN - Return long from method
|
class |
RETURN |
RETURN - Return from void method
|
Modifier and Type | Field | Description |
---|---|---|
static ReturnInstruction |
InstructionConstants.ARETURN |
|
static ReturnInstruction |
InstructionConstants.DRETURN |
|
static ReturnInstruction |
InstructionConstants.FRETURN |
|
static ReturnInstruction |
InstructionConstants.IRETURN |
|
static ReturnInstruction |
InstructionConstants.LRETURN |
|
static ReturnInstruction |
InstructionConstants.RETURN |
Modifier and Type | Method | Description |
---|---|---|
static ReturnInstruction |
InstructionFactory.createReturn(Type type) |
Create typed return
|
Modifier and Type | Method | Description |
---|---|---|
void |
EmptyVisitor.visitReturnInstruction(ReturnInstruction obj) |
|
void |
Visitor.visitReturnInstruction(ReturnInstruction obj) |
Modifier and Type | Method | Description |
---|---|---|
void |
InstConstraintVisitor.visitReturnInstruction(ReturnInstruction o) |
Assures the generic preconditions of a ReturnInstruction instance.
|