| java.lang.Object com.salmonllc.util.ThreeObjectContainer
ThreeObjectContainer | public class ThreeObjectContainer implements java.io.Serializable(Code) | | This is a simple container object that holds any three other objects.
|
ThreeObjectContainer | public ThreeObjectContainer()(Code) | | Builds an empty TwoObjectContainer
|
ThreeObjectContainer | public ThreeObjectContainer(Object object1, Object object2, Object object3)(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
|
getObject3 | public Object getObject3()(Code) | | Returns the third 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.
|
setObject3 | public void setObject3(Object o)(Code) | | Sets the value of the third object.
|
toString | public String toString()(Code) | | Creates a String representation of the contents of the ThreebjectContainer
- contents of container as a string representation |
|
|