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 w w. ja va 2 s. c om*/ public class SortEncryption extends SortingNetworkObject { public int compare(Network arg0, Network arg1) { if((arg0 != null)&(arg1 != null)) { return arg0.getLastSurvey().security.compareToIgnoreCase(arg1.getLastSurvey().security); } return 0; } }