Project

General

Profile

Download (2.04 KB) Statistics
| Branch: | 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.pesi.faunaEuropaea;
11

    
12
/**
13
 * @author a.babadshanjan
14
 * @since 11.09.2009
15
 */
16
public class FaunaEuropaeaDistribution {
17

    
18
	private int distributionId;
19
	private int occurrenceStatusId;
20
	private int areaId;
21
	private String areaName;
22
	private String areaCode;
23
	private int extraLimital;
24

    
25
	/**
26
	 * @return the distributionId
27
	 */
28
	public int getDistributionId() {
29
		return distributionId;
30
	}
31
	/**
32
	 * @param distributionId the distributionId to set
33
	 */
34
	public void setDistributionId(int distributionId) {
35
		this.distributionId = distributionId;
36
	}
37
	/**
38
	 * @return the occurrenceStatusId
39
	 */
40
	public int getOccurrenceStatusId() {
41
		return occurrenceStatusId;
42
	}
43
	/**
44
	 * @param occurrenceStatusId the occurrenceStatusId to set
45
	 */
46
	public void setOccurrenceStatusId(int occurrenceStatusId) {
47
		this.occurrenceStatusId = occurrenceStatusId;
48
	}
49
	/**
50
	 * @return the areaId
51
	 */
52
	public int getAreaId() {
53
		return areaId;
54
	}
55
	/**
56
	 * @param areaId the areaId to set
57
	 */
58
	public void setAreaId(int areaId) {
59
		this.areaId = areaId;
60
	}
61
	/**
62
	 * @return the areaName
63
	 */
64
	public String getAreaName() {
65
		return areaName;
66
	}
67
	/**
68
	 * @param areaName the areaName to set
69
	 */
70
	public void setAreaName(String areaName) {
71
		this.areaName = areaName;
72
	}
73
	/**
74
	 * @return the areaCode
75
	 */
76
	public String getAreaCode() {
77
		return areaCode;
78
	}
79
	/**
80
	 * @param areaCode the areaCode to set
81
	 */
82
	public void setAreaCode(String areaCode) {
83
		this.areaCode = areaCode;
84
	}
85
	/**
86
	 * @return the extraLimital
87
	 */
88
	public int getExtraLimital() {
89
		return extraLimital;
90
	}
91
	/**
92
	 * @param extraLimital the extraLimital to set
93
	 */
94
	public void setExtraLimital(int extraLimital) {
95
		this.extraLimital = extraLimital;
96
	}
97

    
98

    
99
}
(3-3/20)