Package uk.ac.bbsrc.tgac.miso.core.util

Examples of uk.ac.bbsrc.tgac.miso.core.util.DateComparator


      RunQC lastAdded = null;

      List<RunQC> lqc = new ArrayList<RunQC>(r.getRunQCs());
      if (!lqc.isEmpty()) {
        try {
          Collections.sort(lqc, new DateComparator(RunQC.class, "getQcDate"));
          lastAdded = lqc.get(lqc.size()-1);
        }
        catch (NoSuchMethodException e) {
          log.error("Cannot sort list of run QCs", e);
          e.printStackTrace();
View Full Code Here

TOP

Related Classes of uk.ac.bbsrc.tgac.miso.core.util.DateComparator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.