Uses of Class
org.apache.bcel.generic.InstructionList
Package
Description
Generic part of the Apache Byte Code Engineering Library (BCEL), classes to dynamically modify class objects
and byte code instructions.
Utility classes for the Apache Byte Code Engineering Library (BCEL), namely:
Collection classes for JavaClass objects
A converter for class files to HTML
A tool to find instructions patterns via regular expressions
A class to find classes as defined in the CLASSPATH
A class loader that allows to create classes at run time
-
Uses of InstructionList in org.apache.bcel.generic
Modifier and TypeMethodDescriptionInstructionList.copy()
InstructionFactory.createPrintln
(String s) Create a call to the most popular System.out.println() method.CompoundInstruction.getInstructionList()
MethodGen.getInstructionList()
PUSH.getInstructionList()
SWITCH.getInstructionList()
Modifier and TypeMethodDescriptionInstructionList.append
(InstructionHandle ih, InstructionList il) Append another list after instruction (handle) ih contained in this list.InstructionList.append
(InstructionList il) Append another list to this one.InstructionList.append
(Instruction i, InstructionList il) Append another list after instruction i contained in this list.static int
MethodGen.getMaxStack
(ConstantPoolGen cp, InstructionList il, CodeExceptionGen[] et) Computes stack usage of an instruction list by performing control flow analysis.InstructionList.insert
(InstructionHandle ih, InstructionList il) Insert another list before Instruction handle ih contained in this list.InstructionList.insert
(InstructionList il) Insert another list.InstructionList.insert
(Instruction i, InstructionList il) Insert another list before Instruction i contained in this list.void
InstructionListObserver.notify
(InstructionList list) void
MethodGen.setInstructionList
(InstructionList il) ModifierConstructorDescriptionMethodGen
(int accessFlags, Type returnType, Type[] argTypes, String[] argNames, String methodName, String className, InstructionList il, ConstantPoolGen cp) Declare method. -
Uses of InstructionList in org.apache.bcel.util