Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 179 → Rev 188

/trunk/src/org/tela_botanica/client/modeles/StructureConservation.java
41,21 → 41,41
}
}
public String getFormationMark() {
return renvoyerValeurCorrecte("mark_formation");
}
public void setFormationMark(String mf) {
this.set("mark_formation", mf);
}
public String getFormation() {
return renvoyerValeurCorrecte("formation");
}
public void setFormation(String f) {
this.set("formation", f);
}
public String getFormationInteret() {
return renvoyerValeurCorrecte("mark_formation_interet");
}
public void setFormationInteret(String f) {
this.set("mark_formation_interet", f);
}
 
public String getStockageLocal() {
return renvoyerValeurCorrecte("truk_stockage_local");
}
public void setStockageLocal(String sl) {
this.set("truk_stockage_local", sl);
}
public void setStockageLocal(String type, String valeur) {
String chaineExistante = renvoyerValeurCorrecte("truk_stockage_local");
if (chaineExistante.equals("")) {
this.set("truk_stockage_local", type+"##"+valeur);
} else {
this.set("truk_stockage_local", chaineExistante+";"+type+"##"+valeur);
}
}
public void setStockageMeuble(String sm) {
this.set("truk_stockage_meuble", sm);