Back to project page PrincePolo.
The source code is released under:
GNU General Public License
If you think the Android project PrincePolo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package se.agile.model; /* www . j a v a 2 s . com*/ public class Tuple<X,Y> { public final X first; public final Y second; public Tuple(X first, Y second){ this.first = first; this.second = second; } }