Subversion Repositories eFlore/Applications.del

Rev

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

Rev 445 Rev 451
Line 96... Line 96...
96
	public void setValeurRechercheSimple(String valeurRecherche) {
96
	public void setValeurRechercheSimple(String valeurRecherche) {
97
		recherchePrincipale.setText(valeurRecherche);
97
		recherchePrincipale.setText(valeurRecherche);
98
	}
98
	}
Line 99... Line 99...
99
 
99
 
100
	public void chargerValeursRecherchePrecedente(InformationsRecherche informationsRecherche) {
100
	public void chargerValeursRecherchePrecedente(InformationsRecherche informationsRecherche) {
101
		getRecherchePrincipale().setText(informationsRecherche.getRechercheLibre());
101
		recherchePrincipale.setText(informationsRecherche.getRechercheLibre());
102
		getDepartement().setText(informationsRecherche.getDepartement());
102
		departement.setText(informationsRecherche.getDepartement());
103
		getCommune().setText(informationsRecherche.getCommune());
103
		commune.setText(informationsRecherche.getCommune());
104
		getFamille().setText(informationsRecherche.getFamille());
104
		famille.setText(informationsRecherche.getFamille());
105
		getGenre().setText(informationsRecherche.getGenre());
105
		genre.setText(informationsRecherche.getGenre());
106
		getTag().setText(informationsRecherche.getTag());
106
		tag.setText(informationsRecherche.getTag());
107
		getMotCle().setText(informationsRecherche.getMotClef());
107
		motCle.setText(informationsRecherche.getMotClef());
108
		getAuteur().setText(informationsRecherche.getAuteur());
108
		auteur.setText(informationsRecherche.getAuteur());
Line 109... Line 109...
109
		getDate().setText(informationsRecherche.getDate());
109
		date.setText(informationsRecherche.getDate());
110
 
110
 
Line 111... Line 111...
111
		afficherLigneInfoRecherche(informationsRecherche);
111
		afficherLigneInfoRecherche(informationsRecherche);
Line 158... Line 158...
158
 
158
 
159
	public void nettoyer() {
159
	public void nettoyer() {
160
		chargerValeursRecherchePrecedente(new InformationsRecherche());
160
		chargerValeursRecherchePrecedente(new InformationsRecherche());
Line 161... Line 161...
161
	}
161
	}
162
 
162
 
163
	public HasText getRecherchePrincipale() {
163
	public String getRecherchePrincipale() {
Line 164... Line 164...
164
		return recherchePrincipale;
164
		return recherchePrincipale.getText();
165
	}
165
	}
166
 
166
 
Line 167... Line 167...
167
	public HasText getDepartement() {
167
	public String getDepartement() {
168
		return departement;
168
		return departement.getText();
169
	}
169
	}
Line 170... Line 170...
170
 
170
 
171
	public HasText getCommune() {
171
	public String getCommune() {
172
		return commune;
172
		return commune.getText();
Line 173... Line 173...
173
	}
173
	}
174
 
174
 
175
	public HasWidgets getTaxon() {
175
	public HasWidgets getTaxon() {
Line 176... Line 176...
176
		return taxon;
176
		return taxon;
177
	}
177
	}
178
 
178
 
Line 179... Line 179...
179
	public HasText getFamille() {
179
	public String getFamille() {
180
		return famille;
180
		return famille.getText();
181
	}
181
	}
Line 182... Line 182...
182
 
182
 
183
	public HasText getGenre() {
183
	public String getGenre() {
184
		return genre;
184
		return genre.getText();
Line 185... Line 185...
185
	}
185
	}
186
 
186
 
187
	public HasText getTag() {
187
	public String getTag() {
Line 188... Line 188...
188
		return tag;
188
		return tag.getText();
189
	}
189
	}
190
 
190
 
Line 191... Line 191...
191
	public HasText getMotCle() {
191
	public String getMotCle() {
192
		return motCle;
192
		return motCle.getText();
193
	}
193
	}
-
 
194
 
-
 
195
	public String getAuteur() {
-
 
196
		return auteur.getText();
-
 
197
	}
-
 
198
 
194
 
199
	public String getDate() {