Subversion Repositories eFlore/Archives.cel-v2

Rev

Rev 30 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 30 Rev 49
1
package org.tela_botanica.client.modeles;
1
package org.tela_botanica.client.modeles;
2
 
2
 
3
 
3
 
4
public class Observation {
4
public class Observation {
5
 
5
 
6
 
-
 
7
	private int nombreObservations=0;
-
 
8
	private Observation [] listeObservation=null;
-
 
9
 
6
 
10
	private String transmis=null;
7
	private String transmis=null;
11
	private String nomSaisi=null;
8
	private String nomSaisi=null;
12
	private String nomRetenu=null;
9
	private String nomRetenu=null;
13
	private String numeroNomenclatural=null;
10
	private String numeroNomenclatural=null;
14
	private String numeroTaxonomique=null;
11
	private String numeroTaxonomique=null;
15
	private String famille=null;
12
	private String famille=null;
16
	private String localite=null;
13
	private String localite=null;
17
	private String lieudit=null;
14
	private String lieudit=null;
18
	private String station=null;
15
	private String station=null;
19
	private String milieu=null;
16
	private String milieu=null;
20
	private String commentaire=null;
17
	private String commentaire=null;
21
	private String date=null;
18
	private String date=null;
22
	private String numeroOrdre=null;
19
	private String numeroOrdre=null;
23
 
20
 
24
 
21
 
25
	
22
	
26
	public Observation() {
23
	public Observation() {
27
	}
24
	}
28
 
25
 
29
	
26
	
30
	/**
27
	/**
31
	 * Constructeur nombre total d'observations
-
 
32
	 * @param i
-
 
33
	 */
-
 
34
	
-
 
35
	public Observation(int i) {
-
 
36
		nombreObservations=i;
-
 
37
	}
-
 
38
 
-
 
39
			
-
 
40
	
-
 
41
	public int getNombreObservations() {
-
 
42
		return nombreObservations;
-
 
43
	}
-
 
44
 
-
 
45
 
-
 
46
	/**
-
 
47
	 * @param transmis
28
	 * @param transmis
48
	 * @param nomSaisi
29
	 * @param nomSaisi
49
	 * @param nomRetenu
30
	 * @param nomRetenu
50
	 * @param numeroNomenclatural
31
	 * @param numeroNomenclatural
51
	 * @param numeroTaxonomique
32
	 * @param numeroTaxonomique
52
	 * @param famille
33
	 * @param famille
53
	 * @param localite
34
	 * @param localite
54
	 * @param lieudit
35
	 * @param lieudit
55
	 * @param station
36
	 * @param station
56
	 * @param milieu
37
	 * @param milieu
57
	 * @param commentaire
38
	 * @param commentaire
58
	 * @param date
39
	 * @param date
59
	 * @param numeroOrdre
40
	 * @param numeroOrdre
60
	 */
41
	 */
61
	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) {
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) {
62
		
43
		
63
		this.transmis = transmis;
44
		this.transmis = transmis;
64
		this.nomSaisi = nomSaisi;
45
		this.nomSaisi = nomSaisi;
65
		this.nomRetenu = nomRetenu;
46
		this.nomRetenu = nomRetenu;
66
		this.numeroNomenclatural = numeroNomenclatural;
47
		this.numeroNomenclatural = numeroNomenclatural;
67
		this.numeroTaxonomique = numeroTaxonomique;
48
		this.numeroTaxonomique = numeroTaxonomique;
68
		this.famille = famille;
49
		this.famille = famille;
69
		this.localite = localite;
50
		this.localite = localite;
70
		this.lieudit = lieudit;
51
		this.lieudit = lieudit;
71
		this.station = station;
52
		this.station = station;
72
		this.milieu = milieu;
53
		this.milieu = milieu;
73
		this.commentaire = commentaire;
54
		this.commentaire = commentaire;
74
		this.date = date;
55
		this.date = date;
75
		this.numeroOrdre = numeroOrdre;
56
		this.numeroOrdre = numeroOrdre;
76
		
57
		
77
	}
58
	}
78
 
59
 
-
 
60
 
79
 
61
 
-
 
62
	public String getNomSaisi() {
-
 
63
		return nomSaisi;
-
 
64
	}
-
 
65
 
80
	public Observation(Observation[] listeObservation) {
66
 
-
 
67
	public String getNumeroOrdre() {
81
		this.listeObservation=listeObservation;
68
		return numeroOrdre;
-
 
69
	}
82
	}
70
 
83
 
71
 
84
	public Observation[] getListeObservation() {
72
	public String getCommentaire() {
85
		return listeObservation;
73
		return commentaire;
86
	}
74
	}
87
 
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
 
88
 
101
 
89
	public String getNomSaisi() {
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() {
90
		return nomSaisi;
123
		return transmis;
91
	}
-
 
92
	
124
	}
93
	
125
	
94
 
126
 
95
}
127
}