Subversion Repositories eFlore/Applications.coel

Rev

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

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