Subversion Repositories eFlore/Archives.cel-v2

Rev

Rev 9 | Go to most recent revision | 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 int nombreObservations=0;
8
	private Observation [] listeObservation=null;
9
 
10
	private String transmis=null;
11
	private String nomSaisi=null;
12
	private String nomRetenu=null;
13
	private String numeroNomenclatural=null;
14
	private String numeroTaxonomique=null;
15
	private String famille=null;
16
	private String localite=null;
17
	private String lieudit=null;
18
	private String station=null;
19
	private String milieu=null;
20
	private String commentaire=null;
21
	private String date=null;
22
	private String numeroOrdre=null;
23
 
24
 
25
 
26
	public Observation() {
27
	}
28
 
29
 
30
	/**
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
48
	 * @param nomSaisi
30 aperonnet 49
	 * @param nomRetenu
9 ddelon 50
	 * @param numeroNomenclatural
51
	 * @param numeroTaxonomique
52
	 * @param famille
53
	 * @param localite
54
	 * @param lieudit
55
	 * @param station
56
	 * @param milieu
57
	 * @param commentaire
58
	 * @param date
59
	 * @param numeroOrdre
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) {
62
 
63
		this.transmis = transmis;
64
		this.nomSaisi = nomSaisi;
65
		this.nomRetenu = nomRetenu;
66
		this.numeroNomenclatural = numeroNomenclatural;
67
		this.numeroTaxonomique = numeroTaxonomique;
68
		this.famille = famille;
69
		this.localite = localite;
70
		this.lieudit = lieudit;
71
		this.station = station;
72
		this.milieu = milieu;
73
		this.commentaire = commentaire;
74
		this.date = date;
75
		this.numeroOrdre = numeroOrdre;
76
 
77
	}
78
 
79
 
80
	public Observation(Observation[] listeObservation) {
81
		this.listeObservation=listeObservation;
82
	}
83
 
84
	public Observation[] getListeObservation() {
85
		return listeObservation;
86
	}
87
 
88
 
89
	public String getNomSaisi() {
90
		return nomSaisi;
91
	}
92
 
93
 
94
 
95
}