org.apache.commons.javaflow.bytecode.transformation.bcel.analyser
Class Frame

java.lang.Object
  extended byorg.apache.commons.javaflow.bytecode.transformation.bcel.analyser.Frame

public class Frame
extends java.lang.Object

This class represents a JVM execution frame; that means, a local variable array and an operand stack. WARNING! These classes are a fork of the bcel verifier.

Version:
$Id: Frame.java 231525 2005-08-11 21:59:00Z tcurdt $

Field Summary
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  java.lang.Object clone()
           
 boolean equals(java.lang.Object o)
           
 Frame getClone()
           
 LocalVariables getLocals()
           
 OperandStack getStack()
           
 java.lang.String toString()
          Returns a String representation of the Frame instance.
 
Methods inherited from class java.lang.Object
finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

_this

public 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 java.lang.Object clone()

getClone

public Frame getClone()

getLocals

public LocalVariables getLocals()

getStack

public OperandStack getStack()

equals

public boolean equals(java.lang.Object o)

toString

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



Copyright © 2004-2005 The Apache Software Foundation. All Rights Reserved.