Subversion Repositories eFlore/Applications.del

Compare Revisions

Regard whitespace Rev 1117 → Rev 1118

/trunk/src/org/tela_botanica/del/client/modeles/InformationsRecherche.java
35,8 → 35,10
}
 
public void setRechercheLibre(String rechercheLibre) {
if (rechercheLibre != null) {
this.rechercheLibre = rechercheLibre;
}
}
 
public String getDepartement() {
return departement;
43,8 → 45,10
}
 
public void setDepartement(String departement) {
if (departement != null) {
this.departement = departement;
}
}
 
public String getTaxon() {
return taxon;
51,8 → 55,10
}
 
public void setTaxon(String taxon) {
if (taxon != null) {
this.taxon = taxon;
}
}
 
public String getGenre() {
return genre;
59,8 → 65,10
}
 
public void setGenre(String genre) {
if (genre != null) {
this.genre = genre;
}
}
 
public String getMotClef() {
return motClef;
67,8 → 75,10
}
 
public void setMotClef(String motClef) {
if (motClef != null) {
this.motClef = motClef;
}
}
 
public String getDate() {
return date;
75,8 → 85,10
}
 
public void setDate(String date) {
if (date != null) {
this.date = date;
}
}
 
public String getCommune() {
return commune;
83,6 → 95,7
}
 
public void setCommune(String commune) {
if (commune != null) {
String[] tableauCommuneDpt = commune.split(" ");
if (tableauCommuneDpt.length == 2) {
String dpt = tableauCommuneDpt[1].replaceAll("\\(", "").replaceAll("\\)", "");
91,8 → 104,8
} else {
this.commune = commune;
}
 
}
}
 
public String getFamille() {
return famille;
99,8 → 112,10
}
 
public void setFamille(String famille) {
if (famille != null) {
this.famille = famille;
}
}
 
public String getTag() {
return tag;
107,8 → 122,10
}
 
public void setTag(String tag) {
if (tag != null) {
this.tag = tag;
}
}
 
public String getAuteur() {
return auteur;
115,8 → 132,10
}
 
public void setAuteur(String auteur) {
if (auteur != null) {
this.auteur = auteur;
}
}
 
public ModeTri getTriParNbVotes() {
return triParNbVotes;