Back to project page wigle-wifi-wardriving-badfork.
The source code is released under:
/* * Copyright (c) 2010-2012, Andrew Carra, Robert Hagemann, Hugh Kennedy * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permi...
If you think the Android project wigle-wifi-wardriving-badfork 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 net.wigle.wigleandroid; /* www . j a va 2s . c om*/ public final class Pair<A,B> { private A a; private B b; public Pair( final A a, final B b) { this.a = a; this.b = b; } public A getFirst() { return a; } public B getSecond() { return b; } }