Class Frame
java.lang.Object
org.apache.bcel.verifier.structurals.Frame
This class represents a JVM execution frame; that means,
a local variable array and an operand stack.
-
Field Summary
Modifier and TypeFieldDescriptionprotected static UninitializedObjectType
Deprecated.Use the getter/setter to access the field as it may be made private in a later release -
Constructor Summary
ConstructorDescriptionFrame
(int maxLocals, int maxStack) Frame
(LocalVariables locals, OperandStack stack) -
Method Summary
Modifier and TypeMethodDescriptionprotected Object
clone()
boolean
getClone()
getStack()
static UninitializedObjectType
getThis()
int
hashCode()
static void
setThis
(UninitializedObjectType _this) toString()
Returns a String representation of the Frame instance.
-
Field Details
-
_this
Deprecated.Use the getter/setter to access the field as it may be made private in a later releaseFor instance initialization methods, it is important to remember which instance it is that is not initialized yet. It will be initialized invoking another constructor later. NULL means the instance already *is* initialized.
-
-
Constructor Details
-
Frame
public Frame(int maxLocals, int maxStack) -
Frame
-
-
Method Details
-
clone
-
getClone
-
getLocals
-
getStack
-
hashCode
public int hashCode() -
equals
-
toString
Returns a String representation of the Frame instance. -
getThis
- Returns:
- the _this
- Since:
- 6.0
-
setThis
- Parameters:
_this
- the _this to set- Since:
- 6.0
-