Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 1934 → Rev 1935

/trunk/src/org/tela_botanica/client/modeles/collection/Collection.java
4,6 → 4,7
import java.util.Map;
import java.util.Set;
 
import org.tela_botanica.client.Coel;
import org.tela_botanica.client.modeles.aDonnee;
 
import com.extjs.gxt.ui.client.data.ModelData;
299,21 → 300,21
public String getPeriodeConstitutionDebut() {
return renvoyerValeurCorrecte("periode_constitution_debut");
}
public void setPeriodeConstitutionDebut(Integer periodeConstitution) {
if (periodeConstitution.equals(new Integer("")))
this.set("periode_constitution_debut", null);
else
this.set("periode_constitution_debut", periodeConstitution);
public void setPeriodeConstitutionDebut(String periodeConstitution) {
if (periodeConstitution == null || periodeConstitution.equals("Année")) {
periodeConstitution = "";
}
this.set("periode_constitution_debut", periodeConstitution);
}
public String getPeriodeConstitutionFin() {
return renvoyerValeurCorrecte("periode_constitution_fin");
}
public void setPeriodeConstitutionFin(Integer periodeConstitution) {
if (periodeConstitution.equals(new Integer("")))
this.set("periode_constitution_fin", null);
else
this.set("periode_constitution_fin", periodeConstitution);
public void setPeriodeConstitutionFin(String periodeConstitution) {
if (periodeConstitution == null || periodeConstitution.equals("Année")) {
periodeConstitution = "";
}
this.set("periode_constitution_fin", periodeConstitution);
}
// COUVERTURE LIEU