Created
May 2, 2011 23:05
-
-
Save phatduckk/952541 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class HookerReturn2<A, B> { | |
public A first; | |
public B second; | |
public HookerReturn2(A first, B second) { | |
this.first = first; | |
this.second = second; | |
} | |
public static void example() { | |
HookerReturn2<Integer, String> r2 = new HookerReturn2<Integer, String>(9, "there you go"); | |
// return r2 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment