| java.lang.Object com.salmonllc.util.FourObjectContainer
FourObjectContainer | public class FourObjectContainer implements java.io.Serializable(Code) | | This is a simple container object that holds any four other objects.
|
FourObjectContainer | public FourObjectContainer()(Code) | | Builds an empty TwoObjectContainer
|
FourObjectContainer | public FourObjectContainer(Object object1, Object object2, Object object3, Object object4)(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
|
getObject4 | public Object getObject4()(Code) | | Returns the fourth 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.
|
setObject4 | public void setObject4(Object o)(Code) | | Sets the value of the fourth object.
|
|
|