//: net/mindview/util/ThreeTuple.java package net.mindview.util; public class ThreeTuple extends TwoTuple { public final C third; public ThreeTuple(A a, B b, C c) { super(a, b); third = c; } public String toString() { return "(" + first + ", " + second + ", " + third +")"; } } ///:~