Project

General

Profile

Download (845 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2018 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.taxeditor.ui.section;
10

    
11
import java.util.Comparator;
12

    
13
import eu.etaxonomy.cdm.model.common.CdmBase;
14

    
15
/**
16
 * @author pplitzner
17
 * @since Mar 5, 2018
18
 */
19
public class DefaultCdmBaseComparator<T extends CdmBase> implements Comparator<T> {
20

    
21
    @Override
22
    public int compare(T o1, T o2) {
23
        if(o1==null){
24
            return -1;
25
        }
26
        if(o2==null){
27
            return 1;
28
        }
29
        int diff = o1.getId() - o2.getId();
30
        if(diff==0){
31
            diff = o1.getCreated().compareTo(o2.getCreated());
32
        }
33
        return diff;
34
    }
35
}
(6-6/9)