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.
|
Modifier and Type | Class and Description |
---|---|
class |
FieldInstruction
Super class for the GET/PUTxxx family of instructions.
|
class |
FieldOrMethod
Super class for InvokeInstruction and FieldInstruction, since they have
some methods in common!
|
class |
GETFIELD
GETFIELD - Fetch field from object
Stack: ..., objectref -> ..., value
OR
Stack: ..., objectref -> ..., value.word1, value.word2
|
class |
GETSTATIC
GETSTATIC - Fetch static field from class
Stack: ..., -> ..., value
OR
Stack: ..., -> ..., value.word1, value.word2
|
class |
INVOKEDYNAMIC
Class for INVOKEDYNAMIC.
|
class |
InvokeInstruction
Super class for the INVOKExxx family of instructions.
|
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 ...]]
|
class |
PUTFIELD
PUTFIELD - Put field in object
Stack: ..., objectref, value -> ...
|
class |
PUTSTATIC
PUTSTATIC - Put static field in class
Stack: ..., value -> ...
|
Modifier and Type | Method and Description |
---|---|
void |
VisitorSupportsInvokeDynamic.visitNameSignatureInstruction(NameSignatureInstruction obj) |
void |
EmptyVisitor.visitNameSignatureInstruction(NameSignatureInstruction obj) |
Copyright © 2016. All rights reserved.