Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.apache.bcel.generic.InstructionList

Uses of InstructionList in org.apache.bcel.generic
 

Fields in org.apache.bcel.generic declared as InstructionList
private  InstructionList MethodGen.il
           
 

Methods in org.apache.bcel.generic that return InstructionList
 InstructionList SWITCH.getInstructionList()
           
 InstructionList PUSH.getInstructionList()
           
 InstructionList MethodGen.getInstructionList()
           
 InstructionList InstructionList.copy()
           
 InstructionList InstructionFactory.createPrintln(java.lang.String s)
          Create a call to the most popular System.out.println() method.
 InstructionList CompoundInstruction.getInstructionList()
           
 

Methods in org.apache.bcel.generic with parameters of type InstructionList
 void MethodGen.setInstructionList(InstructionList il)
           
static int MethodGen.getMaxStack(ConstantPoolGen cp, InstructionList il, CodeExceptionGen[] et)
          Computes stack usage of an instruction list by performing control flow analysis.
 void InstructionListObserver.notify(InstructionList list)
           
 InstructionHandle InstructionList.append(InstructionHandle ih, InstructionList il)
          Append another list after instruction (handle) ih contained in this list.
 InstructionHandle InstructionList.append(Instruction i, InstructionList il)
          Append another list after instruction i contained in this list.
 InstructionHandle InstructionList.append(InstructionList il)
          Append another list to this one.
 InstructionHandle InstructionList.insert(InstructionHandle ih, InstructionList il)
          Insert another list before Instruction handle ih contained in this list.
 InstructionHandle InstructionList.insert(InstructionList il)
          Insert another list.
 InstructionHandle InstructionList.insert(Instruction i, InstructionList il)
          Insert another list before Instruction i contained in this list.
 

Constructors in org.apache.bcel.generic with parameters of type InstructionList
MethodGen(int access_flags, Type return_type, Type[] arg_types, java.lang.String[] arg_names, java.lang.String method_name, java.lang.String class_name, InstructionList il, ConstantPoolGen cp)
          Declare method.