Uses of Class
org.aspectj.apache.bcel.generic.InstructionBranch

Packages that use InstructionBranch
org.aspectj.apache.bcel.generic   
 

Uses of InstructionBranch in org.aspectj.apache.bcel.generic
 

Subclasses of InstructionBranch in org.aspectj.apache.bcel.generic
 class InstructionSelect
          Select - Abstract super class for LOOKUPSWITCH and TABLESWITCH instructions.
 class LOOKUPSWITCH
          LOOKUPSWITCH - Switch with unordered set of values
 class TABLESWITCH
          TABLESWITCH - Switch within given range of values, i.e., low..high
 

Methods in org.aspectj.apache.bcel.generic that return InstructionBranch
static InstructionBranch InstructionFactory.createBranchInstruction(short opcode, InstructionHandle target)
          Create branch instruction by given opcode, except LOOKUPSWITCH and TABLESWITCH.
 

Methods in org.aspectj.apache.bcel.generic with parameters of type InstructionBranch
 BranchHandle InstructionList.append(InstructionBranch i)
          Append a branch instruction to the end of this list.
 BranchHandle InstructionList.append(InstructionHandle ih, InstructionBranch i)
          Append an instruction after instruction (handle) ih contained in this list.
 BranchHandle InstructionList.insert(InstructionBranch i)
          Insert a branch instruction at start of this list.
 BranchHandle InstructionList.insert(InstructionHandle ih, InstructionBranch i)
          Insert an instruction before instruction (handle) ih contained in this list.
 void InstVisitor.visitBranchInstruction(InstructionBranch obj)
           
 void InstVisitor.visitJSR_W(InstructionBranch obj)
           
 void InstVisitor.visitJSR(InstructionBranch obj)
           
 void InstVisitor.visitJsrInstruction(InstructionBranch obj)