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

Uses in package org.apache.bcel.verifier.structurals

Methods with parameter type org.apache.bcel.generic.InvokeInstruction

void
Ensures the general preconditions of an InvokeInstruction instance.

Uses in package org.apache.bcel.generic

Classes derived from org.apache.bcel.generic.InvokeInstruction

class
INVOKEINTERFACE - Invoke interface method
Stack: ..., objectref, [arg1, [arg2 ...]] -> ...
class
INVOKESPECIAL - Invoke instance method; special handling for superclass, private and instance initialization method invocations
Stack: ..., objectref, [arg1, [arg2 ...]] -> ...
class
INVOKESTATIC - Invoke a class (static) method
Stack: ..., [arg1, [arg2 ...]] -> ...
class
INVOKEVIRTUAL - Invoke instance method; dispatch based on class
Stack: ..., objectref, [arg1, [arg2 ...]] -> ...

Methods with parameter type org.apache.bcel.generic.InvokeInstruction

void
void

Methods with return type org.apache.bcel.generic.InvokeInstruction

InvokeInstruction
InstructionFactory.createInvoke(String class_name, String name, Type ret_type, Type[] arg_types, short kind)
Create an invoke instruction.