Subversion Repositories eFlore/Applications.del

Rev

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

Rev 335 Rev 455
Line 1... Line 1...
1
package org.tela_botanica.del.client.modeles;
1
package org.tela_botanica.del.client.modeles;
Line 2... Line 2...
2
 
2
 
Line 3... Line 3...
3
public class InformationsRecherche {
3
public class InformationsRecherche {
4
 
4
 
5
	private String rechercheLibre;
5
	private String rechercheLibre;
6
	
6
 
7
	private String departement;
7
	private String departement;
8
	
8
 
9
	private String taxon;
9
	private String taxon;
10
	
10
 
11
	private String genre;
11
	private String genre;
12
	
12
 
13
	private String motClef;
13
	private String motClef;
14
	
14
 
15
	private String date;
15
	private String date;
16
	
16
 
17
	private String commune;
17
	private String commune;
18
	
18
 
19
	private String famille;
19
	private String famille;
20
	
20
 
21
	private String tag;
21
	private String tag;
Line -... Line 22...
-
 
22
 
-
 
23
	private String auteur;
-
 
24
 
-
 
25
	private ModeTri triParNbVotes = ModeTri.PAS_DE_TRI;
22
	
26
 
23
	private String auteur;
27
	private ModeTri triParDate = ModeTri.PAS_DE_TRI;
24
 
28
 
Line 25... Line 29...
25
	public String getRechercheLibre() {
29
	public String getRechercheLibre() {
Line 99... Line 103...
99
	}
103
	}
Line 100... Line 104...
100
 
104
 
101
	public void setAuteur(String auteur) {
105
	public void setAuteur(String auteur) {
102
		this.auteur = auteur;
106
		this.auteur = auteur;
-
 
107
	}
-
 
108
 
-
 
109
	public ModeTri getTriParNbVotes() {
-
 
110
		return triParNbVotes;
-
 
111
	}
-
 
112
 
-
 
113
	public void setTriParNbVotes(ModeTri triParNbVotes) {
-
 
114
		this.triParNbVotes = triParNbVotes;
-
 
115
	}
-
 
116
 
-
 
117
	public ModeTri getTriParDate() {
-
 
118
		return triParDate;
-
 
119
	}
-
 
120
 
-
 
121
	public void setTriParDate(ModeTri triParDate) {
-
 
122
		this.triParDate = triParDate;
-
 
123
	}
103
	}
124