Project

General

Profile

Download (891 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2015 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.cdm.ext.geo;
10

    
11
import java.util.Collection;
12
import java.util.List;
13

    
14
import eu.etaxonomy.cdm.api.service.dto.CondensedDistribution;
15
import eu.etaxonomy.cdm.model.common.Language;
16
import eu.etaxonomy.cdm.model.description.Distribution;
17

    
18
/**
19
 * @author a.kohlbecker
20
 \* @since Jun 24, 2015
21
 *
22
 */
23
public interface ICondensedDistributionComposer {
24

    
25
    /**
26
     * @param filteredDistributions
27
     * @param hideMarkedAreas
28
     * @param langs
29
     * @return
30
     */
31
    public CondensedDistribution createCondensedDistribution(Collection<Distribution> filteredDistributions,
32
            List<Language> langs);
33

    
34
}
(10-10/14)