Back to project page TreeFrogEngine.
The source code is released under:
MIT License
If you think the Android project TreeFrogEngine 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 com.discretesoftworks.framework; //from w ww . jav a 2 s . c om public class Pair<A,B>{ public final A a; public final B b; public Pair(final A a, final B b){ this.a = a; this.b = b; } }