Subversion Repositories eFlore/Applications.del

Rev

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

Rev 928 Rev 1118
Line 33... Line 33...
33
	public String getRechercheLibre() {
33
	public String getRechercheLibre() {
34
		return rechercheLibre;
34
		return rechercheLibre;
35
	}
35
	}
Line 36... Line 36...
36
 
36
 
-
 
37
	public void setRechercheLibre(String rechercheLibre) {
37
	public void setRechercheLibre(String rechercheLibre) {
38
		if (rechercheLibre != null) {
-
 
39
			this.rechercheLibre = rechercheLibre;
38
		this.rechercheLibre = rechercheLibre;
40
		}
Line 39... Line 41...
39
	}
41
	}
40
 
42
 
41
	public String getDepartement() {
43
	public String getDepartement() {
Line 42... Line 44...
42
		return departement;
44
		return departement;
-
 
45
	}
43
	}
46
 
-
 
47
	public void setDepartement(String departement) {
44
 
48
		if (departement != null) {
Line 45... Line 49...
45
	public void setDepartement(String departement) {
49
			this.departement = departement;
46
		this.departement = departement;
50
		}
47
	}
51
	}
Line 48... Line 52...
48
 
52
 
-
 
53
	public String getTaxon() {
49
	public String getTaxon() {
54
		return taxon;
-
 
55
	}
50
		return taxon;
56
 
Line 51... Line 57...
51
	}
57
	public void setTaxon(String taxon) {
52
 
58
		if (taxon != null) {
53
	public void setTaxon(String taxon) {
59
			 this.taxon = taxon;
Line 54... Line 60...
54
		this.taxon = taxon;
60
		}
-
 
61
	}
55
	}
62
 
-
 
63
	public String getGenre() {
56
 
64
		return genre;
Line 57... Line 65...
57
	public String getGenre() {
65
	}
58
		return genre;
66
 
59
	}
67
	public void setGenre(String genre) {
Line 60... Line 68...
60
 
68
		if (genre != null) {
-
 
69
			this.genre = genre;
61
	public void setGenre(String genre) {
70
		}
-
 
71
	}
62
		this.genre = genre;
72
 
Line 63... Line 73...
63
	}
73
	public String getMotClef() {
64
 
74
		return motClef;
65
	public String getMotClef() {
75
	}
Line 66... Line 76...
66
		return motClef;
76
 
-
 
77
	public void setMotClef(String motClef) {
67
	}
78
		if (motClef != null) {
-
 
79
			this.motClef = motClef;
68
 
80
		}
Line 69... Line 81...
69
	public void setMotClef(String motClef) {
81
	}
70
		this.motClef = motClef;
82
 
71
	}
83
	public String getDate() {
Line 72... Line 84...
72
 
84
		return date;
-
 
85
	}
73
	public String getDate() {
86
 
74
		return date;
87
	public void setDate(String date) {
75
	}
88
		if (date != null) {
76
 
89
			this.date = date;
77
	public void setDate(String date) {
90
		}
78
		this.date = date;
91
	}
79
	}
92
 
-
 
93
	public String getCommune() {
80
 
94
		return commune;
81
	public String getCommune() {
-
 
82
		return commune;
95
	}
Line 83... Line 96...
83
	}
96
 
84
 
97
	public void setCommune(String commune) {
85
	public void setCommune(String commune) {
98
		if (commune != null) {
Line 86... Line 99...
86
		String[] tableauCommuneDpt = commune.split(" ");
99
			String[] tableauCommuneDpt = commune.split(" ");
-
 
100
			if (tableauCommuneDpt.length == 2) {
87
		if (tableauCommuneDpt.length == 2) {
101
				String dpt = tableauCommuneDpt[1].replaceAll("\\(", "").replaceAll("\\)", "");
-
 
102
				setDepartement(dpt);
88
			String dpt = tableauCommuneDpt[1].replaceAll("\\(", "").replaceAll("\\)", "");
103
				this.commune = tableauCommuneDpt[0];
Line 89... Line 104...
89
			setDepartement(dpt);
104
			} else {
90
			this.commune = tableauCommuneDpt[0];
105
				this.commune = commune;
91
		} else {
106
			}
Line 92... Line 107...
92
			this.commune = commune;
107
		}
-
 
108
	}
93
		}
109
 
-
 
110
	public String getFamille() {
94
 
111
		return famille;
Line 95... Line 112...
95
	}
112
	}
96
 
113
 
97
	public String getFamille() {
114
	public void setFamille(String famille) {
Line 98... Line 115...
98
		return famille;
115
		if (famille != null) {
-
 
116
			this.famille = famille;
99
	}
117
		}
-
 
118
	}
100
 
119
 
Line 101... Line 120...
101
	public void setFamille(String famille) {
120
	public String getTag() {
102
		this.famille = famille;
121
		return tag;
103
	}
122
	}