Rev 804 | Blame | Last modification | View Log | RSS feed
package org.tela_botanica.client.modeles;
import java.util.Iterator;
import java.util.Set;
import com.google.gwt.json.client.JSONObject;
public class Projet extends aDonnee {
private static final long serialVersionUID = 6733053168274995082L;
private static final String PREFIXE = "cpr";
public Projet() {
this.set("mark_contact", false);
}
public Projet(JSONObject liste) {
// l'objet JSON est une table de hachage
Set<String> im = liste.keySet();
// Parcourt pour chaque clé
for (Iterator<String> it = im.iterator(); it.hasNext();) {
// Si elle est associée à une valeur, nous l'ajoutons
String cle = it.next();
// Suppression de l'abréviation du champ. Inutile dans le contexte d'un objet
String cleObjet = cle.replaceFirst("^"+PREFIXE+"_", "");
if (liste.get(cle).isString() != null) {
String valeur = liste.get(cle).isString().stringValue();
this.set(cleObjet, valeur);
} else {
// Sinon, nous ajoutons la clé avec une valeur vide
String valeur = " ";
this.set(cleObjet, valeur);
}
}
}
@Override
protected String getPrefixe() {
return PREFIXE;
}
public String getId() {
return renvoyerValeurCorrecte("id_projet");
}
public String getNom() {
return renvoyerValeurCorrecte("nom");
}
public String getAbreviation() {
return renvoyerValeurCorrecte("abreviation");
}
public String getResume() {
return renvoyerValeurCorrecte("resume");
}
public String getDescription() {
return renvoyerValeurCorrecte("description");
}
public String getUrl() {
return renvoyerValeurCorrecte("url");
}
public String getMotsCles() {
return renvoyerValeurCorrecte("mot_cles ");
}
public String getCitation() {
return renvoyerValeurCorrecte("citation ");
}
public String getLicence() {
return renvoyerValeurCorrecte("licence ");
}
public String getLangue() {
return renvoyerValeurCorrecte("ce_langue ");
}
public String getIndexationHeure() {
return renvoyerValeurCorrecte("indexation_heure ");
}
public String getIndexationDuree() {
return renvoyerValeurCorrecte("ce_indexation_duree ");
}
public String getIndexationFreq() {
return renvoyerValeurCorrecte("ce_indexation_freq ");
}
public String getMarkPublic() {
return renvoyerValeurCorrecte("mark_public ");
}
public String getMeta() {
return renvoyerValeurCorrecte("ce_meta ");
}
}