Subversion Repositories eFlore/Applications.coel

Rev

Rev 1918 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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