Project

General

Profile

Download (1.44 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.model.term.TermType;
15
import eu.etaxonomy.cdm.persistence.dto.AbstractTermDto;
16
import eu.etaxonomy.cdm.persistence.dto.TermDto;
17
import eu.etaxonomy.cdm.remote.l10n.TermRepresentation_L10n;
18
import eu.etaxonomy.taxeditor.view.search.facet.Facet;
19
import eu.etaxonomy.taxeditor.view.search.facet.SearchResult;
20

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

    
28
    public TermSearchResult(AbstractTermDto content) {
29
        super(content);
30
    }
31

    
32
    @Override
33
    protected Set<Facet> initFacets(AbstractTermDto content) {
34
        Set<Facet> facets = new HashSet<>();
35
        content.localize(new TermRepresentation_L10n());
36
        TermType termType = content.getTermType();
37
        if (content instanceof TermDto){
38
            facets.add(new Facet(((TermDto)content).getVocRepresentation_L10n(), termType!=null?termType.getMessage():null));
39
        }else{
40
            facets.add(new Facet(content.getRepresentation_L10n(), termType!=null?termType.getMessage():null));
41
        }
42
        return facets;
43
    }
44

    
45
}
(4-4/5)