Back to project page android-mydropboxelibrary.
The source code is released under:
GNU General Public License
If you think the Android project android-mydropboxelibrary 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.sch.mydropboxelibrary.model.comparators; /* w w w .j a v a2 s . c om*/ import java.util.Comparator; import com.sch.mydropboxelibrary.model.EBook; /** * Comparator that sort by the creation date of the ebook */ public class EBookDateComparator implements Comparator<EBook>{ @Override public int compare(EBook ebook1, EBook ebook2) { return ebook1.getCreationDate().compareTo(ebook2.getCreationDate()); } }