| |
|
| java.lang.Object com.salmonllc.util.TwoObjectContainer
TwoObjectContainer | public class TwoObjectContainer implements java.io.Serializable(Code) | | This is a simple container object that holds any two other objects.
|
TwoObjectContainer | public TwoObjectContainer()(Code) | | Builds an empty TwoObjectContainer
|
TwoObjectContainer | public TwoObjectContainer(Object object1, Object object2)(Code) | | Builds an TwoObjectContainer and sets the value of object1 and object2
|
getObject1 | public Object getObject1()(Code) | | Returns the first object
|
getObject2 | public Object getObject2()(Code) | | Returns the second object
|
setObject1 | public void setObject1(Object o)(Code) | | Sets the value of the first object.
|
setObject2 | public void setObject2(Object o)(Code) | | Sets the value of the second object.
|
toString | public String toString()(Code) | | Creates a String representation of the contents of the TwoObjectContainer
- contents of container as a string representation |
|
|
|