Uses of Interface
org.apache.bcel.generic.CompoundInstruction
-
Packages that use CompoundInstruction 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. -
-
Uses of CompoundInstruction in org.apache.bcel.generic
Classes in org.apache.bcel.generic that implement CompoundInstruction Modifier and Type Class Description classPUSHWrapper class for push operations, which are implemented either as BIPUSH, LDC or xCONST_n instructions.classSWITCHSWITCH - 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.Methods in org.apache.bcel.generic with parameters of type CompoundInstruction Modifier and Type Method Description InstructionHandleInstructionList. append(CompoundInstruction c)Append a compound instruction.InstructionHandleInstructionList. append(InstructionHandle ih, CompoundInstruction c)Append a compound instruction.InstructionHandleInstructionList. append(Instruction i, CompoundInstruction c)Append a compound instruction, after instruction i.InstructionHandleInstructionList. insert(CompoundInstruction c)Insert a compound instruction.InstructionHandleInstructionList. insert(InstructionHandle ih, CompoundInstruction c)Insert a compound instruction.InstructionHandleInstructionList. insert(Instruction i, CompoundInstruction c)Insert a compound instruction before instruction i.Constructors in org.apache.bcel.generic with parameters of type CompoundInstruction Constructor Description InstructionList(CompoundInstruction c)Initialize list with (nonnull) compound instruction.
-