Back to project page PharmaApp.
The source code is released under:
MIT License
If you think the Android project PharmaApp 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 mobi.pharmaapp.util; //from www. j a va 2 s .c o m import java.util.Comparator; /** * * @author see /AUTHORS */ public class PharmacyAlphComparator implements Comparator<Pharmacy> { public int compare(Pharmacy l, Pharmacy r) { return l.getName().compareTo(r.getName()); } }