Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 1687 → Rev 1690

/trunk/src/org/tela_botanica/client/modeles/structure/Structure.java
405,8 → 405,8
}
return Integer.parseInt(renvoyerValeurCorrecte("nbre_personne"));
}
public void setNbrePersonne(int nbrePersonne) {
this.set("nbre_personne", Integer.toString(nbrePersonne));
public void setNbrePersonne(Number nbrePersonne) {
this.set("nbre_personne", nbrePersonne != null ? nbrePersonne.intValue() : null);
}
public String getConditionAcces() {