org.apache.cocoon.components.flow.java
Class ContinuationStack

java.lang.Object
  extended by org.apache.cocoon.components.flow.java.ContinuationStack
All Implemented Interfaces:
Serializable

public class ContinuationStack
extends Object
implements Serializable

Stack to store the frame information along the invocation trace.

Version:
CVS $Id: ContinuationStack.html 1304258 2012-03-23 10:09:27Z ilgrosso $
Author:
Torsten Curdt, Stephan Michels
See Also:
Serialized Form

Constructor Summary
ContinuationStack()
           
ContinuationStack(ContinuationStack parent)
           
 
Method Summary
 double popDouble()
           
 float popFloat()
           
 int popInt()
           
 long popLong()
           
 Object popObject()
           
 Object popReference()
           
 void pushDouble(double d)
           
 void pushFloat(float f)
           
 void pushInt(int i)
           
 void pushLong(long l)
           
 void pushObject(Object o)
           
 void pushReference(Object o)
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ContinuationStack

public ContinuationStack()

ContinuationStack

public ContinuationStack(ContinuationStack parent)
Method Detail

popDouble

public double popDouble()

popFloat

public float popFloat()

popInt

public int popInt()

popLong

public long popLong()

popObject

public Object popObject()

popReference

public Object popReference()

pushDouble

public void pushDouble(double d)

pushFloat

public void pushFloat(float f)

pushInt

public void pushInt(int i)

pushLong

public void pushLong(long l)

pushObject

public void pushObject(Object o)

pushReference

public void pushReference(Object o)

toString

public String toString()
Overrides:
toString in class Object


Copyright © 1999-2010 The Apache Software Foundation. All Rights Reserved.