| Package | Description |
|---|---|
| jdk7u.jaxp.org.apache.bcel.external.generic |
This package contains the "generic" part of the
Byte Code Engineering
Library, i.e., classes to dynamically modify class objects and
byte code instructions.
|
| Modifier and Type | Class and Description |
|---|---|
class |
INVOKEINTERFACE
INVOKEINTERFACE - Invoke interface method
Stack: ..., objectref, [arg1, [arg2 ...]]
|
class |
INVOKESPECIAL
INVOKESPECIAL - Invoke instance method; special handling for superclass, private
and instance initialization method invocations
Stack: ..., objectref, [arg1, [arg2 ...]]
|
class |
INVOKESTATIC
INVOKESTATIC - Invoke a class (static) method
Stack: ..., [arg1, [arg2 ...]]
|
class |
INVOKEVIRTUAL
INVOKEVIRTUAL - Invoke instance method; dispatch based on class
Stack: ..., objectref, [arg1, [arg2 ...]]
|
| Modifier and Type | Method and Description |
|---|---|
InvokeInstruction |
InstructionFactory.createInvoke(String class_name,
String name,
Type ret_type,
Type[] arg_types,
short kind)
Create an invoke instruction.
|
| Modifier and Type | Method and Description |
|---|---|
void |
EmptyVisitor.visitInvokeInstruction(InvokeInstruction obj) |
void |
Visitor.visitInvokeInstruction(InvokeInstruction obj) |
Copyright © 2018–2021 mhoffrogge. All rights reserved.