Created a Tuple class for passing around pairs of objects.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@132 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2001-05-29 03:29:54 +00:00
parent 15a78e501e
commit adcb322b83
@@ -0,0 +1,33 @@
//
// $Id: Tuple.java,v 1.1 2001/05/29 03:29:54 mdb Exp $
package com.samskivert.util;
/**
* A tuple is a simple object that holds a reference to two other objects.
*/
public class Tuple
{
/** The left object. */
public Object left;
/** The right object. */
public Object right;
/** Construct a tuple with the specified two objects. */
public Tuple (Object left, Object right)
{
this.left = left;
this.right = right;
}
/** Construct a blank tuple. */
public Tuple ()
{
}
public String toString ()
{
return "[left=" + left + ", right=" + right + "]";
}
}