Package | Description |
---|---|
org.apache.bcel.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.
|
org.apache.bcel.verifier.structurals |
Provides a PassVerifier class mostly used internally by JustIce, yielding a control flow graph for public use as
a nice side effect.
|
Modifier and Type | Class and Description |
---|---|
class |
INVOKEDYNAMIC
Class for INVOKEDYNAMIC.
|
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
|
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 |
Visitor.visitInvokeInstruction(InvokeInstruction obj) |
void |
EmptyVisitor.visitInvokeInstruction(InvokeInstruction obj) |
Modifier and Type | Method and Description |
---|---|
void |
InstConstraintVisitor.visitInvokeInstruction(InvokeInstruction o)
Ensures the general preconditions of an InvokeInstruction instance.
|
Copyright © 2004–2022 The Apache Software Foundation. All rights reserved.