org.apache.bcel.verifier.structurals

Class Frame

public class Frame extends Object

This class represents a JVM execution frame; that means, a local variable array and an operand stack.
Field Summary
protected static UninitializedObjectType_this
For instance initialization methods, it is important to remember which instance it is that is not initialized yet.
Constructor Summary
Frame(int maxLocals, int maxStack)
Frame(LocalVariables locals, OperandStack stack)
Method Summary
protected Objectclone()
booleanequals(Object o)
FramegetClone()
LocalVariablesgetLocals()
OperandStackgetStack()
inthashCode()
StringtoString()
Returns a String representation of the Frame instance.

Field Detail

_this

protected static UninitializedObjectType _this
For 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 Detail

Frame

public Frame(int maxLocals, int maxStack)

Frame

public Frame(LocalVariables locals, OperandStack stack)

Method Detail

clone

protected Object clone()

equals

public boolean equals(Object o)

getClone

public Frame getClone()

getLocals

public LocalVariables getLocals()

getStack

public OperandStack getStack()

hashCode

public int hashCode()

Returns: a hash code value for the object.

toString

public String toString()
Returns a String representation of the Frame instance.