Project

General

Profile

Download (1.63 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.specimen.abcd206.in;
11

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

    
15
import org.apache.log4j.Logger;
16

    
17
/**
18
 * @author a.mueller
19
 * @date 16.06.2010
20
 *
21
 */
22
public class Abcd206DataHolder {
23
	@SuppressWarnings("unused")
24
	private static final Logger logger = Logger.getLogger(Abcd206DataHolder.class);
25
	
26
	
27
	protected String atomisedStr;
28
	protected String nomenclatureCode;
29
	protected String institutionCode;
30
	protected String collectionCode;
31
	protected String unitID;
32
	protected String recordBasis;
33
	protected String accessionNumber;
34
	protected String collectorsNumber;
35
	
36
	protected String fieldNumber;
37
	protected Double longitude;
38
	protected Double latitude;
39
	protected String locality;
40
	protected String languageIso = null;
41
	protected String country;
42
	protected String isocountry;
43
	protected int depth;
44
	protected int altitude;
45
	
46
	protected ArrayList<String> gatheringAgentList;
47
	protected ArrayList<String> identificationList;
48
	protected ArrayList<HashMap<String, String>> atomisedIdentificationList;
49
	protected ArrayList<String> namedAreaList;
50
	protected ArrayList<String> referenceList;
51
	protected ArrayList<String> multimediaObjects;
52

    
53
	protected ArrayList<String> knownABCDelements = new ArrayList<String>();
54
	protected HashMap<String,String> allABCDelements = new HashMap<String,String>();
55

    
56
	
57

    
58

    
59
	
60
}
(1-1/4)