1 package uk.co.jezuk.mango;2 3 /**4 * A <code>Triplet</code> holds three <code>Object</code>s.5 * @author Jez Higgins, Jez UK Ltd6 * @version $Id: Triplet.java 39 2002-04-11 09:46:21Z jez $7 */8 public class Triplet9 {10 public Triplet()11 {12 first = null;13 second = null;14 third = null;15 } // Triplet16 17 public Triplet(Object one, Object two, Object three)18 {19 first = one;20 second = two;21 third = three;22 } // Triplet23 24 public Object first;25 public Object second;26 public Object third;27 } // class Triplet28