Subversion Repositories eFlore/Archives.cel-v2

Rev

Rev 30 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 ddelon 1
package org.tela_botanica.client.modeles;
2
 
3
 
4
public class Observation {
5
 
6
 
7
	private String transmis=null;
8
	private String nomSaisi=null;
9
	private String nomRetenu=null;
10
	private String numeroNomenclatural=null;
11
	private String numeroTaxonomique=null;
12
	private String famille=null;
13
	private String localite=null;
14
	private String lieudit=null;
15
	private String station=null;
16
	private String milieu=null;
17
	private String commentaire=null;
18
	private String date=null;
19
	private String numeroOrdre=null;
20
 
21
 
22
 
23
	public Observation() {
24
	}
25
 
26
 
27
	/**
28
	 * @param transmis
29
	 * @param nomSaisi
30 aperonnet 30
	 * @param nomRetenu
9 ddelon 31
	 * @param numeroNomenclatural
32
	 * @param numeroTaxonomique
33
	 * @param famille
34
	 * @param localite
35
	 * @param lieudit
36
	 * @param station
37
	 * @param milieu
38
	 * @param commentaire
39
	 * @param date
40
	 * @param numeroOrdre
41
	 */
42
	public Observation(String transmis, String nomSaisi, String nomRetenu, String numeroNomenclatural, String numeroTaxonomique, String famille, String localite, String lieudit, String station, String milieu, String commentaire, String date, String numeroOrdre) {
43
 
44
		this.transmis = transmis;
45
		this.nomSaisi = nomSaisi;
46
		this.nomRetenu = nomRetenu;
47
		this.numeroNomenclatural = numeroNomenclatural;
48
		this.numeroTaxonomique = numeroTaxonomique;
49
		this.famille = famille;
50
		this.localite = localite;
51
		this.lieudit = lieudit;
52
		this.station = station;
53
		this.milieu = milieu;
54
		this.commentaire = commentaire;
55
		this.date = date;
56
		this.numeroOrdre = numeroOrdre;
57
 
58
	}
59
 
60
 
49 ddelon 61
 
62
	public String getNomSaisi() {
63
		return nomSaisi;
9 ddelon 64
	}
65
 
49 ddelon 66
 
67
	public String getNumeroOrdre() {
68
		return numeroOrdre;
9 ddelon 69
	}
70
 
71
 
49 ddelon 72
	public String getCommentaire() {
73
		return commentaire;
9 ddelon 74
	}
49 ddelon 75
 
76
 
77
	public String getDate() {
78
		return date;
79
	}
80
 
81
 
82
	public String getFamille() {
83
		return famille;
84
	}
85
 
86
 
87
	public String getLieudit() {
88
		return lieudit;
89
	}
90
 
91
 
92
	public String getLocalite() {
93
		return localite;
94
	}
95
 
96
 
97
	public String getMilieu() {
98
		return milieu;
99
	}
100
 
101
 
102
	public String getNomRetenu() {
103
		return nomRetenu;
104
	}
105
 
106
 
107
	public String getNumeroNomenclatural() {
108
		return numeroNomenclatural;
109
	}
110
 
111
 
112
	public String getNumeroTaxonomique() {
113
		return numeroTaxonomique;
114
	}
115
 
116
 
117
	public String getStation() {
118
		return station;
119
	}
120
 
121
 
122
	public String getTransmis() {
123
		return transmis;
124
	}
9 ddelon 125
 
126
 
127
}