Subversion Repositories eFlore/Applications.del

Rev

Rev 455 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
335 benjamin 1
package org.tela_botanica.del.client.modeles;
2
 
3
public class InformationsRecherche {
4
 
5
	private String rechercheLibre;
6
 
7
	private String departement;
8
 
9
	private String taxon;
10
 
11
	private String genre;
12
 
13
	private String motClef;
14
 
15
	private String date;
16
 
17
	private String commune;
18
 
19
	private String famille;
20
 
21
	private String tag;
22
 
23
	private String auteur;
24
 
25
	public String getRechercheLibre() {
26
		return rechercheLibre;
27
	}
28
 
29
	public void setRechercheLibre(String rechercheLibre) {
30
		this.rechercheLibre = rechercheLibre;
31
	}
32
 
33
	public String getDepartement() {
34
		return departement;
35
	}
36
 
37
	public void setDepartement(String departement) {
38
		this.departement = departement;
39
	}
40
 
41
	public String getTaxon() {
42
		return taxon;
43
	}
44
 
45
	public void setTaxon(String taxon) {
46
		this.taxon = taxon;
47
	}
48
 
49
	public String getGenre() {
50
		return genre;
51
	}
52
 
53
	public void setGenre(String genre) {
54
		this.genre = genre;
55
	}
56
 
57
	public String getMotClef() {
58
		return motClef;
59
	}
60
 
61
	public void setMotClef(String motClef) {
62
		this.motClef = motClef;
63
	}
64
 
65
	public String getDate() {
66
		return date;
67
	}
68
 
69
	public void setDate(String date) {
70
		this.date = date;
71
	}
72
 
73
	public String getCommune() {
74
		return commune;
75
	}
76
 
77
	public void setCommune(String commune) {
78
		this.commune = commune;
79
	}
80
 
81
	public String getFamille() {
82
		return famille;
83
	}
84
 
85
	public void setFamille(String famille) {
86
		this.famille = famille;
87
	}
88
 
89
	public String getTag() {
90
		return tag;
91
	}
92
 
93
	public void setTag(String tag) {
94
		this.tag = tag;
95
	}
96
 
97
	public String getAuteur() {
98
		return auteur;
99
	}
100
 
101
	public void setAuteur(String auteur) {
102
		this.auteur = auteur;
103
	}
104
}