Subversion Repositories eFlore/Archives.cel-v2

Rev

Rev 9 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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