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 w ww . ja v a 2 s .c o m public class SortName extends SortingNetworkObject { public int compare(Network arg0, Network arg1) { // TODO Auto-generated method stub if((arg0.name != null) || (arg1.name !=null) ) { return arg0.name.compareTo(arg1.name); } else if(arg0.name != null) { return 0; } else { return 1; } } }