org.jmock.expectation
Class ReturnValues

java.lang.Object
  extended by org.jmock.expectation.ReturnValues
Direct Known Subclasses:
VoidReturnValues

public class ReturnValues
extends Object

Sequence values as required by MockMaker This is a generic class that should have been introduced to the mockobjects code stream instead of being separately included in org.mockobjects. It is possibly similar to a ReturnObjectList?


Field Summary
protected  Vector myContents
           
 
Constructor Summary
ReturnValues()
           
ReturnValues(boolean keepUsingLastReturnValue)
           
ReturnValues(String name, boolean keepUsingLastReturnValue)
           
 
Method Summary
 void add(Object element)
           
 void addAll(Collection returnValues)
           
 Object getNext()
           
 boolean isEmpty()
           
protected  Object pop()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

myContents

protected Vector myContents
Constructor Detail

ReturnValues

public ReturnValues()

ReturnValues

public ReturnValues(String name,
                    boolean keepUsingLastReturnValue)

ReturnValues

public ReturnValues(boolean keepUsingLastReturnValue)
Method Detail

add

public void add(Object element)

addAll

public void addAll(Collection returnValues)

getNext

public Object getNext()

isEmpty

public boolean isEmpty()

pop

protected Object pop()