/******************************************************************************* *******************************************************************************/ package at.gv.egiz.eaaf.core.impl.data; public class Trible { private final P1 first; private final P2 second; private final P3 third; private Trible(final P1 newFirst, final P2 newSecond, final P3 newThird) { this.first = newFirst; this.second = newSecond; this.third = newThird; } public P1 getFirst() { return this.first; } public P2 getSecond() { return this.second; } public P3 getThird() { return this.third; } public static Trible newInstance(final P1 newFirst, final P2 newSecond, final P3 newThird) { return new Trible(newFirst, newSecond, newThird); } }