Subversion Repositories eFlore/Applications.coel

Rev

Rev 1685 | Rev 1764 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1685 Rev 1690
Line 403... Line 403...
403
		if (renvoyerValeurCorrecte("nbre_personne").equals("")) {
403
		if (renvoyerValeurCorrecte("nbre_personne").equals("")) {
404
			return null;
404
			return null;
405
		}
405
		}
406
		return Integer.parseInt(renvoyerValeurCorrecte("nbre_personne"));
406
		return Integer.parseInt(renvoyerValeurCorrecte("nbre_personne"));
407
	}
407
	}
408
	public void setNbrePersonne(int nbrePersonne) {
408
	public void setNbrePersonne(Number nbrePersonne) {
409
		this.set("nbre_personne", Integer.toString(nbrePersonne));
409
		this.set("nbre_personne", nbrePersonne != null ? nbrePersonne.intValue() : null);
410
	}
410
	}
Line 411... Line 411...
411
	
411
	
412
	public String getConditionAcces() {
412
	public String getConditionAcces() {
413
		return renvoyerValeurCorrecte("condition_acces");
413
		return renvoyerValeurCorrecte("condition_acces");