Project

General

Profile

Download (1009 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 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

    
10
package eu.etaxonomy.cdm.io.excel.stream;
11

    
12
import org.apache.logging.log4j.LogManager;import org.apache.logging.log4j.Logger;
13

    
14
import eu.etaxonomy.cdm.io.dwca.in.DwcaDataImportStateBase;
15
import eu.etaxonomy.cdm.io.dwca.in.DwcaImportState;
16
import eu.etaxonomy.cdm.io.stream.excel.ExcelStreamImportConfigurator;
17

    
18
/**
19
 * 
20
 * @author a.oppermann
21
 * @since 08.05.2013
22
 *
23
 *
24
 *<ROW extends ExcelRowBase>
25
 */
26
public class ExcelStreamImportState extends DwcaDataImportStateBase<ExcelStreamImportConfigurator>{
27
	@SuppressWarnings("unused")
28
	private static final Logger logger = LogManager.getLogger(DwcaImportState.class);
29

    
30
	public ExcelStreamImportState(ExcelStreamImportConfigurator config) {
31
		super(config);
32
	}
33
	
34
}
(2-2/3)