Uses of Class
jellyj.classfile.classgen.CompoundInstruction

Packages that use CompoundInstruction
jellyj.classfile.classgen 

Uses of CompoundInstruction in jellyj.classfile.classgen
 

Classes in jellyj.classfile.classgen that implement CompoundInstruction
class PUSH
          Wrapper class for push operations, which are implemented either as BIPUSH, LDC or xCONST_n instructions.
class SWITCH
          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.
 

Constructors in jellyj.classfile.classgen with parameters of type CompoundInstruction
InstructionList.InstructionList(CompoundInstruction c)
          Initialize list with (nonnull) compound instruction.
 

Methods in jellyj.classfile.classgen with parameters of type CompoundInstruction
final InstructionHandleInstructionList.append(CompoundInstruction c)
          Append a compound instruction.
final InstructionHandleInstructionList.append(Instruction i, CompoundInstruction c)
          Append a compound instruction, after instruction i.
final InstructionHandleInstructionList.insert(CompoundInstruction c)
          Insert a compound instruction.
final InstructionHandleInstructionList.insert(Instruction i, CompoundInstruction c)
          Insert a compound instruction before instruction i.