Project

General

Profile

Download (1.4 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2019 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.view.search.facet.term;
10

    
11
import java.util.HashSet;
12
import java.util.Set;
13

    
14
import eu.etaxonomy.cdm.persistence.dto.TermDto;
15
import eu.etaxonomy.cdm.remote.l10n.TermRepresentation_L10n;
16
import eu.etaxonomy.taxeditor.model.MessagingUtils;
17
import eu.etaxonomy.taxeditor.view.search.facet.Facet;
18
import eu.etaxonomy.taxeditor.view.search.facet.SearchResult;
19

    
20
/**
21
 * @author pplitzner
22
 * @since Jan 24, 2019
23
 *
24
 */
25
public class TermSearchResult extends SearchResult<TermDto> {
26

    
27
    public TermSearchResult(TermDto content) {
28
        super(content);
29
    }
30

    
31
    @Override
32
    protected Set<Facet> initFacets(TermDto content) {
33
        Set<Facet> facets = new HashSet<>();
34
        content.localize(new TermRepresentation_L10n());
35
        facets.add(new Facet(content.getVocRepresentation_L10n()));
36
        return facets;
37
    }
38

    
39
    @Override
40
    public int compareTo(SearchResult<TermDto> o) {
41
        if(this.getContent()==null || o.getContent()==null){
42
            MessagingUtils.error(this.getClass(), "SearchResult with no content!", null);
43
            return 0;
44
        }
45
        return this.getContent().compareTo(o.getContent());
46
    }
47

    
48
}
(4-4/5)