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

Packages that use InvokeInstruction
org.apache.bcel.generic   
org.apache.bcel.verifier.structurals   
 

Uses of InvokeInstruction in org.apache.bcel.generic
 

Subclasses of InvokeInstruction in org.apache.bcel.generic
 class INVOKEINTERFACE
          INVOKEINTERFACE - Invoke interface method
 class INVOKESPECIAL
          INVOKESPECIAL - Invoke instance method; special handling for superclass, private and instance initialization method invocations
 class INVOKESTATIC
          INVOKESTATIC - Invoke a class (static) method
 class INVOKEVIRTUAL
          INVOKEVIRTUAL - Invoke instance method; dispatch based on class
 

Methods in org.apache.bcel.generic that return InvokeInstruction
 InvokeInstruction InstructionFactory.createInvoke(java.lang.String class_name, java.lang.String name, Type ret_type, Type[] arg_types, short kind)
          Create an invoke instruction.
 

Methods in org.apache.bcel.generic with parameters of type InvokeInstruction
 void EmptyVisitor.visitInvokeInstruction(InvokeInstruction obj)
           
 void Visitor.visitInvokeInstruction(InvokeInstruction obj)
           
 

Uses of InvokeInstruction in org.apache.bcel.verifier.structurals
 

Methods in org.apache.bcel.verifier.structurals with parameters of type InvokeInstruction
 void InstConstraintVisitor.visitInvokeInstruction(InvokeInstruction o)
          Ensures the general preconditions of an InvokeInstruction instance.