Project

General

Profile

Download (2.61 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

    
10
package eu.etaxonomy.cdm.io.faunaEuropaea;
11

    
12
import java.util.UUID;
13

    
14
/**
15
 * @author a.babadshanjan
16
 * @created 11.09.2009
17
 * @version 1.0
18
 */
19
public class FaunaEuropaeaDistribution {
20
	
21
	private UUID taxonUuid;
22
	private int taxonId;
23
	private int distributionId;
24
	private int occurrenceStatusId;
25
	private int areaId;
26
	private String areaName;
27
	private String areaCode;
28
	private int extraLimital;
29
	
30
	
31
//	/**
32
//	 * @return the taxonUuid
33
//	 */
34
//	public UUID getTaxonUuid() {
35
//		return taxonUuid;
36
//	}
37
//	/**
38
//	 * @param taxonUuid the taxonUuid to set
39
//	 */
40
//	public void setTaxonUuid(UUID taxonUuid) {
41
//		this.taxonUuid = taxonUuid;
42
//	}
43
//	/**
44
//	 * @return the taxonId
45
//	 */
46
//	public int getTaxonId() {
47
//		return taxonId;
48
//	}
49
//	/**
50
//	 * @param taxonId the taxonId to set
51
//	 */
52
//	public void setTaxonId(int taxonId) {
53
//		this.taxonId = taxonId;
54
//	}
55
	/**
56
	 * @return the distributionId
57
	 */
58
	public int getDistributionId() {
59
		return distributionId;
60
	}
61
	/**
62
	 * @param distributionId the distributionId to set
63
	 */
64
	public void setDistributionId(int distributionId) {
65
		this.distributionId = distributionId;
66
	}
67
	/**
68
	 * @return the occurrenceStatusId
69
	 */
70
	public int getOccurrenceStatusId() {
71
		return occurrenceStatusId;
72
	}
73
	/**
74
	 * @param occurrenceStatusId the occurrenceStatusId to set
75
	 */
76
	public void setOccurrenceStatusId(int occurrenceStatusId) {
77
		this.occurrenceStatusId = occurrenceStatusId;
78
	}
79
	/**
80
	 * @return the areaId
81
	 */
82
	public int getAreaId() {
83
		return areaId;
84
	}
85
	/**
86
	 * @param areaId the areaId to set
87
	 */
88
	public void setAreaId(int areaId) {
89
		this.areaId = areaId;
90
	}
91
	/**
92
	 * @return the areaName
93
	 */
94
	public String getAreaName() {
95
		return areaName;
96
	}
97
	/**
98
	 * @param areaName the areaName to set
99
	 */
100
	public void setAreaName(String areaName) {
101
		this.areaName = areaName;
102
	}
103
	/**
104
	 * @return the areaCode
105
	 */
106
	public String getAreaCode() {
107
		return areaCode;
108
	}
109
	/**
110
	 * @param areaCode the areaCode to set
111
	 */
112
	public void setAreaCode(String areaCode) {
113
		this.areaCode = areaCode;
114
	}
115
	/**
116
	 * @return the extraLimital
117
	 */
118
	public int getExtraLimital() {
119
		return extraLimital;
120
	}
121
	/**
122
	 * @param extraLimital the extraLimital to set
123
	 */
124
	public void setExtraLimital(int extraLimital) {
125
		this.extraLimital = extraLimital;
126
	}
127
	
128

    
129
}
(2-2/15)