Subversion Repositories eFlore/Applications.cel

Rev

Rev 83 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 83 Rev 116
Line 17... Line 17...
17
	private String station=null;
17
	private String station=null;
18
	private String milieu=null;
18
	private String milieu=null;
19
	private String commentaire=null;
19
	private String commentaire=null;
20
	private String date=null;
20
	private String date=null;
21
	private String numeroOrdre=null;
21
	private String numeroOrdre=null;
-
 
22
	private String motsCles=null;
Line 22... Line 23...
22
 
23
 
Line 44... Line 45...
44
	 * @param milieu
45
	 * @param milieu
45
	 * @param commentaire
46
	 * @param commentaire
46
	 * @param date
47
	 * @param date
47
	 * @param numeroOrdre
48
	 * @param numeroOrdre
48
	 */
49
	 */
49
	public Observation(String transmis, String nomSaisi, String nomRetenu, String numeroNomenclaturalSaisi,  String numeroNomenclaturalRetenu, String numeroTaxonomique, String famille, String localite, String identifiantLocalite, String lieudit, String station, String milieu, String commentaire, String date, String numeroOrdre) {
50
	public Observation(String transmis, String nomSaisi, String nomRetenu, String numeroNomenclaturalSaisi,  String numeroNomenclaturalRetenu, String numeroTaxonomique, String famille, String localite, String identifiantLocalite, String lieudit, String station, String milieu, String commentaire, String date, String numeroOrdre, String motsCles) {
Line 50... Line 51...
50
		
51
		
51
		this.transmis = transmis;
52
		this.transmis = transmis;
52
		this.nomSaisi = nomSaisi;
53
		this.nomSaisi = nomSaisi;
53
		this.nomRetenu = nomRetenu;
54
		this.nomRetenu = nomRetenu;
Line 62... Line 63...
62
		this.milieu = milieu;
63
		this.milieu = milieu;
63
		this.commentaire = commentaire;
64
		this.commentaire = commentaire;
64
		this.date = date;
65
		this.date = date;
65
		this.numeroOrdre = numeroOrdre;
66
		this.numeroOrdre = numeroOrdre;
Line -... Line 67...
-
 
67
		
-
 
68
		this.motsCles = motsCles;
66
		
69
		
67
		 // Suppresion indication departementale (on pourrait faire mieux !!)
70
		 // Suppresion indication departementale (on pourrait faire mieux !!)
68
		int pos=localite.indexOf(" (" );
71
		int pos=localite.indexOf(" (" );
69
	    if (pos>=0) {
72
	    if (pos>=0) {
70
	    	this.localite=localite.substring(0,pos);
73
	    	this.localite=localite.substring(0,pos);
Line 90... Line 93...
90
	 * @param commentaire
93
	 * @param commentaire
91
	 * @param date
94
	 * @param date
92
	 * 
95
	 * 
93
	 */
96
	 */
Line 94... Line 97...
94
	
97
	
Line 95... Line 98...
95
	public Observation(String nomSaisi, String numeroNomenclaturalSaisi,   String localite, String identifiantLocalite, String lieudit, String station, String milieu, String commentaire, String date) {
98
	public Observation(String nomSaisi, String numeroNomenclaturalSaisi,   String localite, String identifiantLocalite, String lieudit, String station, String milieu, String commentaire, String date, String motsCles) {
96
		
99
		
Line 97... Line 100...
97
		this.nomSaisi = nomSaisi;
100
		this.nomSaisi = nomSaisi;
98
		this.numeroNomenclaturalSaisi = numeroNomenclaturalSaisi;
101
		this.numeroNomenclaturalSaisi = numeroNomenclaturalSaisi;
99
		
102
		
100
		this.identifiantLocalite = identifiantLocalite;		
103
		this.identifiantLocalite = identifiantLocalite;		
101
		this.lieudit = lieudit;
104
		this.lieudit = lieudit;
102
		this.station = station;
105
		this.station = station;
-
 
106
		this.milieu = milieu;
Line 103... Line 107...
103
		this.milieu = milieu;
107
		this.commentaire = commentaire;
104
		this.commentaire = commentaire;
108
		this.date = date;
105
		this.date = date;
109
		this.motsCles = motsCles;
106
		
110
		
Line 188... Line 192...
188
 
192
 
189
	public String getTransmis() {
193
	public String getTransmis() {
190
		return transmis;
194
		return transmis;
Line -... Line 195...
-
 
195
	}
-
 
196
	
-
 
197
	public String getMotsCles() {
-
 
198
		return motsCles;
Line 191... Line 199...
191
	}
199
	}
192
	
200
	
193
 
201