Project

General

Profile

Download (1.71 KB) Statistics
| Branch: | Revision:
1
package eu.etaxonomy.cdm.app.caryophyllales;
2

    
3
import eu.etaxonomy.cdm.io.excel.taxa.NormalExplicitRow;
4
import eu.etaxonomy.cdm.io.excel.taxa.TaxonExcelImportState;
5
import eu.etaxonomy.cdm.io.excel.taxa.TaxonExcelImporterBase;
6

    
7
public class TaxonExcelCaryophyllales extends TaxonExcelImporterBase {
8
    private static final long serialVersionUID = 7516628978483172010L;
9
    protected static final String AUTHOR_COLUMN = "Authorship";
10
	protected static final String SPECIES_HYBRID_MARKER = "Species hybrid marker";
11
	protected static final String NAME_STATUS_COLUMN = "NameStatus";
12
	protected static final String VERNACULAR_NAME_COLUMN = "VernacularName";
13
	protected static final String LANGUAGE_COLUMN = "Language";
14
	protected static final String REFERENCE_COLUMN = "Reference";
15

    
16
	protected static final String PROTOLOGUE_COLUMN = "Protologue";
17
	protected static final String IMAGE_COLUMN = "Image";
18
	protected static final String TDWG_COLUMN = "TDWG";
19
	protected static final String COUNTRY_COLUMN = "Country";
20

    
21
	protected static final String SYNONYM_COLUMN = "Synonym";
22

    
23
	@Override
24
	protected NormalExplicitRow createDataHolderRow() {
25
		// TODO Auto-generated method stub
26
		return null;
27
	}
28

    
29
	@Override
30
	protected void analyzeSingleValue(
31
			eu.etaxonomy.cdm.io.excel.common.ExcelTaxonOrSpecimenImportBase.KeyValue keyValue,
32
			TaxonExcelImportState state) {
33
		// TODO Auto-generated method stub
34

    
35
	}
36

    
37
	@Override
38
	protected void firstPass(TaxonExcelImportState state) {
39
		// TODO Auto-generated method stub
40

    
41
	}
42

    
43
	@Override
44
	protected void secondPass(TaxonExcelImportState state) {
45
		// TODO Auto-generated method stub
46

    
47
	}
48

    
49
	@Override
50
	protected boolean isIgnore(TaxonExcelImportState state) {
51
		// TODO Auto-generated method stub
52
		return false;
53
	}
54

    
55
}
(5-5/8)