Back to project page EdmontonWifi.
The source code is released under:
MIT License
If you think the Android project EdmontonWifi 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 hey.rich.edmontonwifi.Objects; //w w w . ja v a2s . com import android.location.Location; import java.util.ArrayList; import java.util.List; /** * Singleton List of Wifis Object */ public class WifiList { private List<Wifi> wifis; public WifiList() { this.wifis = new ArrayList<Wifi>(); } public List<Wifi> getAllWifis() { return this.wifis; } public void setAllWifis(List<Wifi> wifis) { this.wifis = wifis; } public Wifi getWifiAtPos(int pos) { return wifis.get(pos); } }