Subversion Repositories eFlore/Applications.coel

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
838 aurelien 1
package org.tela_botanica.client.modeles;
2
 
3
import java.util.Iterator;
4
import java.util.Set;
5
 
6
import com.google.gwt.json.client.JSONObject;
7
 
8
public class ProjetVersion extends aDonnee {
9
 
10
	/**
11
	 *
12
	 */
13
	private static final long serialVersionUID = 1L;
14
 
15
	private static final String PREFIXE = "cprv";
16
 
17
	public ProjetVersion() {
18
		//this.set("mark_contact", false);
19
		super();
20
	}
21
 
22
	public ProjetVersion(JSONObject liste) {
23
		// l'objet JSON est une table de hachage
24
		Set<String> im = liste.keySet();
25
 
26
		// Parcourt pour chaque clé
27
		for (Iterator<String> it = im.iterator(); it.hasNext();) {
28
			// Si elle est associée à une valeur, nous l'ajoutons
29
			String cle = it.next();
30
			// Suppression de l'abréviation du champ. Inutile dans le contexte d'un objet
31
			String cleObjet = cle.replaceFirst("^"+PREFIXE+"_", "");
32
			if (liste.get(cle).isString() != null) {
33
				String valeur = liste.get(cle).isString().stringValue();
34
				this.set(cleObjet, valeur);
35
			} else {
36
				// Sinon, nous ajoutons la clé avec une valeur vide
37
				String valeur = " ";
38
				this.set(cleObjet, valeur);
39
			}
40
		}
41
	}
42
 
43
	@Override
44
	protected String getPrefixe() {
45
		return PREFIXE;
46
	}
47
 
48
	public String getIdVersion() {
49
		return renvoyerValeurCorrecte("id_version");
50
	}
51
 
52
	public String getIdProjet() {
53
		return renvoyerValeurCorrecte("id_projet");
54
	}
55
 
56
	public String getNom() {
57
		return renvoyerValeurCorrecte("nom");
58
	}
59
 
60
	public String getCode() {
61
		return renvoyerValeurCorrecte("code");
62
	}
63
 
64
	public String getDateDebut() {
65
		return renvoyerValeurCorrecte("date_debut");
66
	}
67
 
68
	public String getDateFin() {
69
		return renvoyerValeurCorrecte("date_fin");
70
	}
71
 
72
	public String getMeta() {
73
		return renvoyerValeurCorrecte("ce_meta ");
74
	}
75
 
76
 
77
}