Back to project page AndroidWifiCracker.
The source code is released under:
MIT License
If you think the Android project AndroidWifiCracker 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.department13.skryfi; /*from ww w.j a v a 2s.c om*/ public class SortSignalStrength extends SortingNetworkObject { public int compare(Network arg0, Network arg1) { if((arg0!=null)&&(arg1!=null)) { return ((Integer)arg0.last_survey.level).compareTo(((Integer)arg1.last_survey.level)); } return 0; } }