org.apache.bcel.verifier.structurals
Class Frame
java.lang.Object
org.apache.bcel.verifier.structurals.Frame
- public class Frame
- extends Object
This class represents a JVM execution frame; that means,
a local variable array and an operand stack.
- Version:
- $Id: Frame.java 386056 2006-03-15 11:31:56Z tcurdt $
Field Summary |
protected static UninitializedObjectType |
_this
For instance initialization methods, it is important to remember
which instance it is that is not initialized yet. |
_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.
Frame
public Frame(int maxLocals,
int maxStack)
Frame
public Frame(LocalVariables locals,
OperandStack stack)
clone
protected Object clone()
getClone
public Frame getClone()
getLocals
public LocalVariables getLocals()
getStack
public OperandStack getStack()
hashCode
public int hashCode()
- Returns:
- a hash code value for the object.
equals
public boolean equals(Object o)
toString
public String toString()
- Returns a String representation of the Frame instance.
Copyright © 2002-2007 Apache Software Foundation. All Rights Reserved.