Frames | No Frames |
Classes implementing org.apache.bcel.generic.LoadClass | |
class | ANEWARRAY - Create new array of references
Stack: ..., count -> ..., arrayref |
class | CHECKCAST - Check whether object is of given type
Stack: ..., objectref -> ..., objectref |
class | Super class for the GET/PUTxxx family of instructions. |
class | Super class for InvokeInstruction and FieldInstruction, since they have
some methods in common!
|
class | GETFIELD - Fetch field from object
Stack: ..., objectref -> ..., valueOR Stack: ..., objectref -> ..., value.word1, value.word2 |
class | GETSTATIC - Fetch static field from class
Stack: ..., -> ..., valueOR Stack: ..., -> ..., value.word1, value.word2 |
class | Super class for the INVOKExxx family of instructions. |
class | INSTANCEOF - Determine if object is of given type
Stack: ..., objectref -> ..., result |
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 ...]] -> ... |
class | MULTIANEWARRAY - Create new mutidimensional array of references
Stack: ..., count1, [count2, ...] -> ..., arrayref |
class | NEW - Create new object
Stack: ... |
class | PUTFIELD - Put field in object
Stack: ..., objectref, value -> ... |
class | PUTSTATIC - Put static field in class
Stack: ..., value -> ... |
Methods with parameter type org.apache.bcel.generic.LoadClass | |
void | |
void |
Methods with parameter type org.apache.bcel.generic.LoadClass | |
void | Assures the generic preconditions of a LoadClass instance. |