Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 454 → Rev 455

/trunk/src/org/tela_botanica/del/client/modeles/InformationsRecherche.java
3,25 → 3,29
public class InformationsRecherche {
 
private String rechercheLibre;
 
private String departement;
 
private String taxon;
 
private String genre;
 
private String motClef;
 
private String date;
 
private String commune;
 
private String famille;
 
private String tag;
 
private String auteur;
 
private ModeTri triParNbVotes = ModeTri.PAS_DE_TRI;
 
private ModeTri triParDate = ModeTri.PAS_DE_TRI;
 
public String getRechercheLibre() {
return rechercheLibre;
}
101,4 → 105,21
public void setAuteur(String auteur) {
this.auteur = auteur;
}
 
public ModeTri getTriParNbVotes() {
return triParNbVotes;
}
 
public void setTriParNbVotes(ModeTri triParNbVotes) {
this.triParNbVotes = triParNbVotes;
}
 
public ModeTri getTriParDate() {
return triParDate;
}
 
public void setTriParDate(ModeTri triParDate) {
this.triParDate = triParDate;
}
 
}