Project

General

Profile

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

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

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

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

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

    
35
}
(8-8/12)