Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 1985 → Rev 1986

/trunk/src/org/tela_botanica/del/client/modeles/InformationsRecherche.java
27,6 → 27,8
private String motClefCel;
 
private String date;
private String pays;
 
private String commune;
 
117,7 → 119,15
this.date = date;
}
}
public String setPays(String pays) {
return this.pays = pays;
}
 
public String getPays() {
return pays;
}
public String getCommune() {
return commune;
}
235,6 → 245,7
chaine += estNonNull(commune) ? "&masque.commune=" + URL.encodeQueryString(commune) : "";
chaine += estNonNull(famille) ? "&masque.famille=" + URL.encodeQueryString(famille) : "";
chaine += estNonNull(auteur) ? "&masque.auteur=" + URL.encodeQueryString(auteur) : "";
chaine += estNonNull(pays) ? "&masque.pays=" + URL.encodeQueryString(pays) : "";
String urlCourante = Window.Location.getHref();
Config config = new Config();