Subversion Repositories eFlore/Applications.coel

Rev

Rev 1513 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
935 jpm 1
package org.tela_botanica.client.modeles.collection;
453 jp_milcent 2
 
3
import java.util.Iterator;
4
import java.util.Set;
5
 
935 jpm 6
import org.tela_botanica.client.modeles.aDonnee;
7
 
453 jp_milcent 8
import com.google.gwt.json.client.JSONObject;
9
 
10
public class CollectionBotanique extends aDonnee {
748 jpm 11
 
12
	private static final long serialVersionUID = -6659148189825855729L;
13
 
453 jp_milcent 14
	public static final String PREFIXE = "ccb";
1173 jpm 15
	public static String[] champsObligatoires = {"ccb_id_collection"};
453 jp_milcent 16
 
17
	public CollectionBotanique() {
18
	}
19
 
20
	public CollectionBotanique(JSONObject botanique) {
21
		// l'objet JSON est une table de hachage
22
		Set<String> im = botanique.keySet();
23
 
24
		// Parcourt pour chaque clé
25
		for (Iterator<String> it = im.iterator(); it.hasNext();) {
26
			// Si elle est associée à une valeur, nous l'ajoutons
27
			String cle = it.next();
28
			if (cle.startsWith(PREFIXE+"_")) {
29
				// Suppression de l'abréviation du champ. Inutile dans le contexte d'un objet
30
				String cleObjet = cle.replaceFirst("^"+PREFIXE+"_", "");
31
				// Sinon, nous ajoutons la clé avec une valeur vide
32
				String valeur = "";
33
				if (botanique.get(cle).isString() != null) {
34
					valeur = botanique.get(cle).isString().stringValue();
35
				}
36
				this.set(cleObjet, valeur);
37
			}
38
		}
39
	}
40
 
748 jpm 41
	@Override
42
	protected String getPrefixe() {
43
		return PREFIXE;
44
	}
45
 
1173 jpm 46
	protected String[] getChampsObligatoires()	{
47
		return champsObligatoires;
48
	}
628 jp_milcent 49
	// ID
50
	public String getId() {
51
		return renvoyerValeurCorrecte("id_collection");
52
	}
53
	public void setId(String idCollection) {
54
		this.set("id_collection", idCollection);
55
	}
56
 
683 jp_milcent 57
	// NBRE ECHANTILLON
58
	public String getNbreEchantillon() {
59
		return renvoyerValeurCorrecte("nbre_echantillon");
60
	}
61
	public void setNbreEchantillon(String type) {
62
		this.set("nbre_echantillon", type);
63
	}
64
 
628 jp_milcent 65
	// TYPE
66
	public String getType() {
67
		return renvoyerValeurCorrecte("ce_truk_type");
68
	}
69
	public void setType(String type) {
70
		this.set("ce_truk_type", type);
71
	}
748 jpm 72
 
868 jpm 73
	// UNITÉ RANGEMENT
74
	public String getUniteRangement() {
75
		return renvoyerValeurCorrecte("truk_unite_rangement");
76
	}
77
	public void setUniteRangement(String uniteRangement) {
78
		this.set("truk_unite_rangement", uniteRangement);
79
	}
80
 
81
	// UNITÉ RANGEMENT ÉTAT
82
	public String getUniteRangementEtat() {
83
		return renvoyerValeurCorrecte("ce_unite_rangement_etat");
84
	}
85
	public void setUniteRangementEtat(String uniteRangementEtat) {
86
		this.set("ce_unite_rangement_etat", uniteRangementEtat);
87
	}
88
 
89
	// UNITÉ BASE
90
	public String getUniteBase() {
91
		return renvoyerValeurCorrecte("truk_unite_base");
92
	}
93
	public void setUniteBase(String uniteBase) {
94
		this.set("truk_unite_base", uniteBase);
95
	}
96
 
1918 aurelien 97
	// NB PLANCHES HERBIER
98
	public String getNbPlanchesHerbiers() {
99
		return renvoyerValeurCorrecte("nb_planches_herbiers");
100
	}
101
	public void setNbPlanchesHerbiers(String nbPlanchesHerbiers) {
102
		this.set("nb_planches_herbiers", nbPlanchesHerbiers);
103
	}
104
 
105
	// NB ESPECES
106
	public String getNbEspeces() {
107
		return renvoyerValeurCorrecte("nb_especes");
108
	}
109
	public void setNbEspeces(String nbEspeces) {
110
		this.set("nb_especes", nbEspeces);
111
	}
112
 
868 jpm 113
	// CONSERVATION PAPIER TYPE
114
	public String getConservationPapierType() {
115
		return renvoyerValeurCorrecte("truk_conservation_papier_type");
116
	}
117
	public void setConservationPapierType(String typePapierConservation) {
118
		this.set("truk_conservation_papier_type", typePapierConservation);
119
	}
120
 
121
	// CONSERVATION MÉTHODE
122
	public String getConservationMethode() {
954 jpm 123
		return renvoyerValeurCorrecte("truk_conservation_methode");
868 jpm 124
	}
125
	public void setConservationMethode(String methodeConservation) {
954 jpm 126
		this.set("truk_conservation_methode", methodeConservation);
868 jpm 127
	}
128
 
870 jpm 129
	// ÉTIQUETTE FIXATION POURCENT
130
	public String getEtiquetteFixationPourcent() {
131
		return renvoyerValeurCorrecte("etiquette_fixation_pourcent");
132
	}
133
	public void setEtiquetteFixationPourcent(String etiquetteFixationPourcent) {
134
		this.set("etiquette_fixation_pourcent", etiquetteFixationPourcent);
135
	}
136
 
868 jpm 137
	// SPÉCIMEN FIXATION POURCENT
138
	public String getSpecimenFixationPourcent() {
139
		return renvoyerValeurCorrecte("specimen_fixation_pourcent");
140
	}
141
	public void setSpecimenFixationPourcent(String specimenFixationPourcent) {
142
		this.set("specimen_fixation_pourcent", specimenFixationPourcent);
143
	}
144
 
145
	// SPÉCIMEN FIXATION MÉTHODE
146
	public String getSpecimenFixationMethode() {
147
		return renvoyerValeurCorrecte("truk_specimen_fixation_methode");
148
	}
149
	public void setSpecimenFixationMethode(String specimenFixationMethode) {
150
		this.set("truk_specimen_fixation_methode", specimenFixationMethode);
151
	}
152
 
153
	// ÉTIQUETTE FIXATION SUPPORT
154
	public String getEtiquetteFixationSupport() {
155
		return renvoyerValeurCorrecte("truk_etiquette_fixation_support");
156
	}
157
	public void setEtiquetteFixationSupport(String etiquetteFixationSupport) {
158
		this.set("truk_etiquette_fixation_support", etiquetteFixationSupport);
159
	}
160
 
161
	// ÉTIQUETTE FIXATION SPECIMEN
162
	public String getEtiquetteFixationSpecimen() {
163
		return renvoyerValeurCorrecte("truk_etiquette_fixation_specimen");
164
	}
165
	public void setEtiquetteFixationSpecimen(String etiquetteFixationSpecimen) {
166
		this.set("truk_etiquette_fixation_specimen", etiquetteFixationSpecimen);
167
	}
168
 
169
	// ÉTIQUETTE ÉCRITURE
170
	public String getEtiquetteEcriture() {
171
		return renvoyerValeurCorrecte("truk_etiquette_ecriture");
172
	}
173
	public void setEtiquetteEcriture(String etiquetteEcriture) {
174
		this.set("truk_etiquette_ecriture", etiquetteEcriture);
175
	}
176
 
177
	// TRAITEMENT
178
	public String getTraitement() {
179
		return renvoyerValeurCorrecte("ce_traitement");
180
	}
181
	public void setTraitement(String traitement) {
182
		this.set("ce_traitement", traitement);
183
	}
184
 
185
	// TRAITEMENT POISON
186
	public String getTraitementPoison() {
956 jpm 187
		return renvoyerValeurCorrecte("truk_traitement_poison");
868 jpm 188
	}
189
	public void setTraitementPoison(String traitementPoison) {
956 jpm 190
		this.set("truk_traitement_poison", traitementPoison);
868 jpm 191
	}
192
 
193
	// TRAITEMENT INSECTE
194
	public String getTraitementInsecte() {
956 jpm 195
		return renvoyerValeurCorrecte("truk_traitement_insecte");
868 jpm 196
	}
197
	public void setTraitementInsecte(String traitementInsecte) {
956 jpm 198
		this.set("truk_traitement_insecte", traitementInsecte);
868 jpm 199
	}
200
 
201
	// ÉTAT GÉNÉRAL
202
	public String getEtatGeneral() {
203
		return renvoyerValeurCorrecte("ce_etat_general");
204
	}
205
	public void setEtatGeneral(String etatGeneral) {
206
		this.set("ce_etat_general", etatGeneral);
207
	}
208
 
209
	// DÉGRADATION SPECIMEN
210
	public String getDegradationSpecimen() {
211
		return renvoyerValeurCorrecte("truk_degradation_specimen");
212
	}
213
	public void setDegradationSpecimen(String degradationSpecimen) {
214
		this.set("truk_degradation_specimen", degradationSpecimen);
215
	}
216
 
217
	// DÉGRADATION PRÉSENTATION
218
	public String getDegradationPresentation() {
219
		return renvoyerValeurCorrecte("truk_degradation_presentation");
220
	}
221
	public void setDegradationPresentation(String degradationPresentation) {
222
		this.set("truk_degradation_presentation", degradationPresentation);
223
	}
224
 
225
	// DÉTERMINATION
226
	public String getDetermination() {
227
		return renvoyerValeurCorrecte("ce_determination");
228
	}
229
	public void setDetermination(String determination) {
230
		this.set("ce_determination", determination);
231
	}
232
 
233
	// NATURE
234
	public String getNature() {
235
		return renvoyerValeurCorrecte("truk_nature");
236
	}
237
	public void setNature(String nature) {
238
		this.set("truk_nature", nature);
239
	}
240
 
241
	// SPÉCIALITÉ
242
	public String getSpecialite() {
243
		return renvoyerValeurCorrecte("specialite");
244
	}
245
	public void setSpecialite(String specialite) {
246
		this.set("specialite", specialite);
247
	}
248
 
249
	// RÉCOLTE DATE DÉBUT
250
	public String getRecolteDateDebut() {
251
		return renvoyerValeurCorrecte("recolte_date_debut");
252
	}
253
	public void setRecolteDateDebut(String dateDebut) {
254
		this.set("recolte_date_debut", dateDebut);
255
	}
256
 
257
	// RÉCOLTE DATE DÉBUT TYPE
258
	public String getRecolteDateDebutType() {
259
		return renvoyerValeurCorrecte("ce_recolte_date_debut_type");
260
	}
261
	public void setRecolteDateDebutType(String dateDebutType) {
262
		this.set("ce_recolte_date_debut_type", dateDebutType);
263
	}
264
 
265
	// RÉCOLTE DATE FIN
266
	public String getRecolteDateFin() {
267
		return renvoyerValeurCorrecte("recolte_date_fin");
268
	}
269
	public void setRecolteDateFin(String dateFin) {
270
		this.set("recolte_date_fin", dateFin);
271
	}
272
 
273
	// RÉCOLTE DATE DÉBUT TYPE
274
	public String getRecolteDateFinType() {
275
		return renvoyerValeurCorrecte("ce_recolte_date_fin_type");
276
	}
277
	public void setRecolteDateFinType(String dateFinType) {
278
		this.set("ce_recolte_date_fin_type", dateFinType);
279
	}
280
 
281
	// CLASSEMENT ANNOTATION
282
	public String getClassementAnnotation() {
283
		return renvoyerValeurCorrecte("annotation_classement");
284
	}
285
	public void setClassementAnnotation(String annotation) {
286
		this.set("annotation_classement", annotation);
287
	}
288
 
289
	// CLASSEMENT ÉTAT
290
	public String getClassementEtat() {
956 jpm 291
		return renvoyerValeurCorrecte("ce_classement_etat");
868 jpm 292
	}
293
	public void setClassementEtat(String classementEtat) {
294
		this.set("ce_classement_etat", classementEtat);
295
	}
296
 
297
	// ÉTIQUETTE RENSEIGNEMENT
298
	public String getEtiquetteRenseignement() {
299
		return renvoyerValeurCorrecte("truk_etiquette_renseignement");
300
	}
301
	public void setEtiquetteRenseignement(String etiquetteRenseignement) {
302
		this.set("truk_etiquette_renseignement", etiquetteRenseignement);
303
	}
304
 
305
	// PRÉCISION LOCALITÉ
306
	public String getPrecisionLocalite() {
307
		return renvoyerValeurCorrecte("ce_precision_localite");
308
	}
309
	public void setPrecisionLocalite(String precisionLocalite) {
310
		this.set("ce_precision_localite", precisionLocalite);
311
	}
312
 
313
	// PRÉCISION DATE
314
	public String getPrecisionDate() {
315
		return renvoyerValeurCorrecte("ce_precision_date");
316
	}
317
	public void setPrecisionDate(String precisionDate) {
318
		this.set("ce_precision_date", precisionDate);
319
	}
320
 
321
	// ANNOTATIONS DIVERSES
322
	public String getAnnotationsDiverses() {
323
		return renvoyerValeurCorrecte("annotation_diverse");
324
	}
325
	public void setAnnotationsDiverses(String annotation) {
326
		this.set("annotation_diverse", annotation);
327
	}
328
 
329
	// COLLECTION INTÉGRÉ
330
	public String getCollectionIntegre() {
331
		return renvoyerValeurCorrecte("ce_collection_integre");
332
	}
333
	public void setCollectionIntegre(String collectionIntegre) {
334
		this.set("ce_collection_integre", collectionIntegre);
335
	}
336
 
337
	// COLLECTION INTÉGRÉ INFO
338
	public String getCollectionIntegreInfo() {
339
		return renvoyerValeurCorrecte("ce_collection_integre_info");
340
	}
341
	public void setCollectionIntegreInfo(String collectionIntegreInfo) {
342
		this.set("ce_collection_integre_info", collectionIntegreInfo);
343
	}
344
 
345
	// INVENTAIRE
346
	public String getInventaire() {
347
		return renvoyerValeurCorrecte("ce_inventaire");
348
	}
349
	public void setInventaire(String inventaire) {
350
		this.set("ce_inventaire", inventaire);
351
	}
352
 
353
	// INVENTAIRE AUTEUR
354
	public String getInventaireAuteur() {
355
		return renvoyerValeurCorrecte("ce_inventaire_auteur");
356
	}
357
	public void setInventaireAuteur(String inventaireAuteur) {
358
		this.set("ce_inventaire_auteur", inventaireAuteur);
359
	}
360
 
361
	// INVENTAIRE FORME
362
	public String getInventaireForme() {
363
		return renvoyerValeurCorrecte("ce_inventaire_forme");
364
	}
365
	public void setInventaireForme(String inventaireForme) {
366
		this.set("ce_inventaire_forme", inventaireForme);
367
	}
368
 
369
	// INVENTAIRE INFO
370
	public String getInventaireInfo() {
371
		return renvoyerValeurCorrecte("inventaire_info");
372
	}
373
	public void setInventaireInfo(String inventaireInfo) {
374
		this.set("inventaire_info", inventaireInfo);
375
	}
376
 
377
	// INVENTAIRE DIGITAL
378
	public String getInventaireDigital() {
379
		return renvoyerValeurCorrecte("ce_truk_inventaire_digital");
380
	}
381
	public void setInventaireDigital(String inventaireDigital) {
382
		this.set("ce_truk_inventaire_digital", inventaireDigital);
383
	}
384
 
385
	// INVENTAIRE DIGITAL POURCENT
386
	public String getInventaireDigitalPourcent() {
387
		return renvoyerValeurCorrecte("inventaire_digital_pourcent");
388
	}
389
	public void setInventaireDigitalPourcent(String inventaireDigitalPourcent) {
390
		this.set("inventaire_digital_pourcent", inventaireDigitalPourcent);
391
	}
392
 
393
	// INVENTAIRE ETAT
394
	public String getInventaireEtat() {
395
		return renvoyerValeurCorrecte("ce_inventaire_etat");
396
	}
397
	public void setInventaireEtat(String inventaireEtat) {
398
		this.set("ce_inventaire_etat", inventaireEtat);
399
	}
400
 
1210 cyprien 401
	//DELETEME ::: INVENTAIRE DONNÉES TYPES
402
	/*public String getInventaireDonneesTypes() {
956 jpm 403
		return renvoyerValeurCorrecte("inventaire_donnee_type");
868 jpm 404
	}
405
	public void setInventaireDonneesTypes(String inventaireDonneesTypes) {
956 jpm 406
		this.set("inventaire_donnee_type", inventaireDonneesTypes);
1210 cyprien 407
	}*/
868 jpm 408
 
453 jp_milcent 409
}