Subversion Repositories eFlore/Applications.cel

Rev

Rev 5 | Rev 20 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

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