Project

General

Profile

Download (888 Bytes) Statistics
| Branch: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2016 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.io.mexico;
11

    
12
import org.apache.log4j.Logger;
13

    
14
import eu.etaxonomy.cdm.io.excel.common.ExcelImportState;
15
import eu.etaxonomy.cdm.io.excel.common.ExcelRowBase;
16

    
17
/**
18
 * @author a.mueller
19
 * @date 16.06.2016
20
 *
21
 */
22
public class MexicoConabioImportState extends ExcelImportState<MexicoConabioImportConfigurator, ExcelRowBase>{
23

    
24
    @SuppressWarnings("unused")
25
    private static final Logger logger = Logger.getLogger(MexicoConabioImportState.class);
26

    
27
    /**
28
     * @param config
29
     */
30
    public MexicoConabioImportState(MexicoConabioImportConfigurator config) {
31
        super(config);
32
    }
33

    
34
}
(7-7/11)