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