Project

General

Profile

Download (1.84 KB) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
 * Copyright (C) 2009 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.taxonx2013;
11

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

    
15
import org.apache.log4j.Logger;
16

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

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

    
28

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

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

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

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

    
59

    
60

    
61

    
62

    
63

    
64
}
(2-2/9)