Subversion Repositories eFlore/Applications.cel

Rev

Rev 5 | Rev 20 | Go to most recent revision | Show entire file | Ignore 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 2... Line -...
2
 
-
 
3
public class Observation {
-
 
4
 
-
 
5
	private int nombreObservations = 0;
-
 
Line 6... Line -...
6
	private Observation[] listeObservation = null;
-
 
7
 
-
 
8
	private String transmis = null;
-
 
9
	private String nomSaisi = null;
-
 
10
	private String nomRetenu = null;
-
 
11
	private String numeroNomenclatural = null;
-
 
12
	private String numeroTaxonomique = null;
-
 
13
	private String famille = null;
-
 
14
	private String localite = null;
2
 
15
	private String lieudit = null;
-
 
16
	private String station = null;
-
 
17
	private String milieu = null;
-
 
18
	private String commentaire = null;
-
 
Line 19... Line -...
19
	private String date = null;
-
 
20
	private String numeroOrdre = null;
-
 
Line -... Line 3...
-
 
3
 
21
 
4
public class Observation {
-
 
5
 
-
 
6
 
22
	public Observation() {
7
	private String transmis=null;
-
 
8
	private String nomSaisi=null;
-
 
9
	private String nomRetenu=null;
-
 
10
	private String numeroNomenclatural=null;
23
	}
11
	private String numeroTaxonomique=null;
24
 
12
	private String famille=null;
-
 
13
	private String localite=null;
25
	/**
14
	private String lieudit=null;
-
 
15
	private String station=null;
Line 26... Line -...
26
	 * Constructeur nombre total d'observations
-
 
27
	 * 
-
 
28
	 * @param i
-
 
Line -... Line 16...
-
 
16
	private String milieu=null;
29
	 */
17
	private String commentaire=null;
30
 
-
 
31
	public Observation(int i) {
18
	private String date=null;
Line -... Line 19...
-
 
19
	private String numeroOrdre=null;
32
		nombreObservations = i;
20
 
33
	}
21
 
34
 
22
	
35
	public int getNombreObservations() {
23
	public Observation() {
36
		return nombreObservations;
24
	}
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) {
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;
62
		this.numeroNomenclatural = numeroNomenclatural;
47
		this.numeroNomenclatural = numeroNomenclatural;
63
		this.numeroTaxonomique = numeroTaxonomique;
48
		this.numeroTaxonomique = numeroTaxonomique;
Line 67... Line 52...
67
		this.station = station;
52
		this.station = station;
68
		this.milieu = milieu;
53
		this.milieu = milieu;
69
		this.commentaire = commentaire;
54
		this.commentaire = commentaire;
70
		this.date = date;
55
		this.date = date;
71
		this.numeroOrdre = numeroOrdre;
56
		this.numeroOrdre = numeroOrdre;
-
 
57
		
-
 
58
	}
-
 
59
 
Line -... Line 60...
-
 
60
 
-
 
61
 
-
 
62
	public String getNomSaisi() {
72
 
63
		return nomSaisi;
Line -... Line 64...
-
 
64
	}
73
	}
65
 
74
 
66
 
75
	public Observation(Observation[] listeObservation) {
67
	public String getNumeroOrdre() {
Line -... Line 68...
-
 
68
		return numeroOrdre;
76
		this.listeObservation = listeObservation;
69
	}
77
	}
70
 
78
 
71
 
Line -... Line 72...
-
 
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() {
79
	public Observation[] getListeObservation() {
98
		return milieu;
80
		return listeObservation;
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
	}
81
	}
120
 
-
 
121
 
Line 82... Line 122...
82
 
122
	public String getTransmis() {