|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.mockobjects.ReturnObjectBag
The ReturnObjectBag is a map containing instances of ReturnObjectList. A single instance is held for each mapkey. Every time a call to putObjectToReturn or getNextReturnObject is made an object is added or removed from the ReturnObjectList for the given key. This allows the ReturnObjectBag to be used to return an ordered list of objects for each key regardless of the order in which the key requests are made.
ReturnObjectList
Constructor Summary | |
ReturnObjectBag(java.lang.String name)
|
Method Summary | |
java.util.Hashtable |
getHashTable()
|
boolean |
getNextReturnBoolean(java.lang.Object key)
|
int |
getNextReturnInt(java.lang.Object key)
|
java.lang.Object |
getNextReturnObject(int key)
Returns the next object in the ReturnObjectList for a given int key. |
java.lang.Object |
getNextReturnObject(java.lang.Object key)
Returns the next object in the ReturnObjectList for a given key. |
void |
putObjectToReturn(int key,
java.lang.Object value)
Places an object into the list of return objects for a particular int key |
void |
putObjectToReturn(java.lang.Object key,
boolean value)
Places an boolean into the list of return objects for a particular key. |
void |
putObjectToReturn(java.lang.Object key,
int value)
Places an int into the list of return objects for a particular key. |
void |
putObjectToReturn(java.lang.Object key,
java.lang.Object value)
Places an object into the list of return objects for a particular key |
void |
verify()
Checks each the list for each key to verify that all no objects remain in the list for that key. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public ReturnObjectBag(java.lang.String name)
name
- Name used to describe an instance of ReturnObjectBag in error messagesMethod Detail |
public void putObjectToReturn(java.lang.Object key, java.lang.Object value)
key
- the key against which the object will be storedvalue
- the value to be added to the list for that keyReturnObjectList.addObjectToReturn(java.lang.Object)
public void putObjectToReturn(int key, java.lang.Object value)
key
- the key against which the object will be storedvalue
- the value to be added to the list for that keyReturnObjectList.addObjectToReturn(java.lang.Object)
public void putObjectToReturn(java.lang.Object key, int value)
key
- the key against which the object will be storedvalue
- the value to be added to the list for that keyReturnObjectList.addObjectToReturn(java.lang.Object)
,
getNextReturnInt(java.lang.Object)
public void putObjectToReturn(java.lang.Object key, boolean value)
key
- the key against which the object will be storedvalue
- the value to be added to the list for that keyReturnObjectList.addObjectToReturn(java.lang.Object)
,
getNextReturnBoolean(java.lang.Object)
public void verify()
verify
in interface Verifiable
ReturnObjectList.verify()
public java.lang.Object getNextReturnObject(java.lang.Object key)
key
- The key for which the next object should be returned.
ReturnObjectList.nextReturnObject()
public java.lang.Object getNextReturnObject(int key)
key
- The key for which the next object should be returned.
ReturnObjectList.nextReturnObject()
public java.util.Hashtable getHashTable()
public int getNextReturnInt(java.lang.Object key)
public boolean getNextReturnBoolean(java.lang.Object key)
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |