Uses of Interface
org.apache.bcel.generic.CompoundInstruction
Package
Description
Generic part of the Apache Byte Code Engineering Library (BCEL), classes to dynamically modify class objects
and byte code instructions.
-
Uses of CompoundInstruction in org.apache.bcel.generic
Modifier and TypeClassDescriptionfinal class
Wrapper class for push operations, which are implemented either as BIPUSH, LDC or xCONST_n instructions.final class
SWITCH - Branch depending on int value, generates either LOOKUPSWITCH or TABLESWITCH instruction, depending on whether the match values (int[]) can be sorted with no gaps between the numbers.Modifier and TypeMethodDescriptionInstructionList.append
(CompoundInstruction c) Append a compound instruction.InstructionList.append
(InstructionHandle ih, CompoundInstruction c) Append a compound instruction.InstructionList.append
(Instruction i, CompoundInstruction c) Append a compound instruction, after instruction i.InstructionList.insert
(CompoundInstruction c) Insert a compound instruction.InstructionList.insert
(InstructionHandle ih, CompoundInstruction c) Insert a compound instruction.InstructionList.insert
(Instruction i, CompoundInstruction c) Insert a compound instruction before instruction i.ModifierConstructorDescriptionInitialize list with (nonnull) compound instruction.