Subversion Repositories eFlore/Applications.coel

Rev

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

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