Project

General

Profile

Download (1.88 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * Copyright (C) 2009 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.io.taxonx2013;
10

    
11
import java.util.ArrayList;
12
import java.util.HashMap;
13

    
14
import org.apache.logging.log4j.LogManager;import org.apache.logging.log4j.Logger;
15

    
16
import eu.etaxonomy.cdm.model.name.SpecimenTypeDesignationStatus;
17

    
18
/**
19
 * @author a.mueller
20
 * @since 16.06.2010
21
 *
22
 */
23
public class TaxonXDataHolder {
24
    @SuppressWarnings("unused")
25
    private static final Logger logger = LogManager.getLogger(TaxonXDataHolder.class);
26

    
27

    
28
    protected String atomisedStr;
29
    protected String nomenclatureCode;
30
    protected String institutionCode;
31
    protected String collectionCode;
32
    protected String unitID;
33
    protected String recordBasis;
34
    protected String accessionNumber;
35
    //	protected String collectorsNumber;
36

    
37
    protected String fieldNumber;
38
    protected Double longitude;
39
    protected Double latitude;
40
    protected String locality;
41
    protected String languageIso = null;
42
    protected String country;
43
    protected String isocountry;
44
    protected int depth;
45
    protected int altitude;
46

    
47
    protected ArrayList<String> gatheringAgentList;
48
    protected ArrayList<String> identificationList;
49
    protected ArrayList<SpecimenTypeDesignationStatus> statusList;
50
    protected ArrayList<HashMap<String, String>> atomisedIdentificationList;
51
    protected ArrayList<String> namedAreaList;
52
    protected ArrayList<String> referenceList;
53
    protected ArrayList<String> multimediaObjects;
54

    
55
    protected ArrayList<String> knownABCDelements = new ArrayList<String>();
56
    protected HashMap<String,String> allABCDelements = new HashMap<String,String>();
57

    
58

    
59

    
60

    
61

    
62

    
63
}
(2-2/9)