ScreenshotComparator.java :  » Client » xfdroid » lowijs » XfireClient » util » Android Open Source

Android Open Source » Client » xfdroid 
xfdroid » lowijs » XfireClient » util » ScreenshotComparator.java
package lowijs.XfireClient.util;

import lowijs.XfireClient.*;

import java.util.*;

public class ScreenshotComparator implements Comparator<Screenshot> {
  public int compare(Screenshot s1, Screenshot s2) {
    return -(s1.getDate().compareTo(s2.getDate()));
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.