322 |
gduche |
1 |
package org.tela_botanica.del.client.composants.moteurrecherche;
|
|
|
2 |
|
1367 |
aurelien |
3 |
import java.util.Map;
|
|
|
4 |
|
335 |
benjamin |
5 |
import org.tela_botanica.del.client.cache.CacheClient;
|
602 |
aurelien |
6 |
import org.tela_botanica.del.client.composants.formulaires.autocompletion.AutoCompletionComboBoxPresenteur;
|
|
|
7 |
import org.tela_botanica.del.client.composants.formulaires.autocompletion.AutoCompletionComboBoxVue;
|
322 |
gduche |
8 |
import org.tela_botanica.del.client.composants.presenteur.Presenteur;
|
1120 |
gduche |
9 |
import org.tela_botanica.del.client.composants.rss.RssPresenteur;
|
|
|
10 |
import org.tela_botanica.del.client.composants.rss.RssVue;
|
553 |
jpm |
11 |
import org.tela_botanica.del.client.config.Config;
|
335 |
benjamin |
12 |
import org.tela_botanica.del.client.modeles.InformationsRecherche;
|
451 |
aurelien |
13 |
import org.tela_botanica.del.client.modeles.ModeRecherche;
|
1367 |
aurelien |
14 |
import org.tela_botanica.del.client.services.ReferentielService;
|
500 |
aurelien |
15 |
import org.tela_botanica.del.client.utils.UtilitairesAutoCompletionService;
|
322 |
gduche |
16 |
|
|
|
17 |
import com.google.gwt.event.dom.client.ClickEvent;
|
|
|
18 |
import com.google.gwt.event.dom.client.ClickHandler;
|
|
|
19 |
import com.google.gwt.event.dom.client.HasClickHandlers;
|
|
|
20 |
import com.google.gwt.event.dom.client.HasKeyPressHandlers;
|
|
|
21 |
import com.google.gwt.event.dom.client.KeyCodes;
|
|
|
22 |
import com.google.gwt.event.dom.client.KeyPressEvent;
|
|
|
23 |
import com.google.gwt.event.dom.client.KeyPressHandler;
|
386 |
aurelien |
24 |
import com.google.gwt.http.client.Response;
|
322 |
gduche |
25 |
import com.google.gwt.user.client.ui.HasWidgets;
|
|
|
26 |
import com.google.gwt.user.client.ui.IsWidget;
|
|
|
27 |
|
|
|
28 |
public abstract class MoteurRecherchePresenteur extends Presenteur {
|
335 |
benjamin |
29 |
|
322 |
gduche |
30 |
public abstract interface Vue extends IsWidget {
|
545 |
jpm |
31 |
public void ajouterVue(HasWidgets composite);
|
560 |
benjamin |
32 |
|
545 |
jpm |
33 |
public HasClickHandlers getLienRechercheAvancee();
|
560 |
benjamin |
34 |
|
545 |
jpm |
35 |
public void basculerAffichageZoneCache();
|
560 |
benjamin |
36 |
|
545 |
jpm |
37 |
public HasClickHandlers getBoutonRechercheSimple();
|
560 |
benjamin |
38 |
|
545 |
jpm |
39 |
public HasClickHandlers getBoutonFermer();
|
560 |
benjamin |
40 |
|
545 |
jpm |
41 |
public HasClickHandlers getBoutonVider();
|
560 |
benjamin |
42 |
|
545 |
jpm |
43 |
public HasClickHandlers getBoutonRechercheAvancee();
|
560 |
benjamin |
44 |
|
545 |
jpm |
45 |
public HasKeyPressHandlers getChampSaisie();
|
560 |
benjamin |
46 |
|
545 |
jpm |
47 |
public HasClickHandlers getChampSaisieCliquable();
|
560 |
benjamin |
48 |
|
545 |
jpm |
49 |
public String getValeurRechercheSimple();
|
560 |
benjamin |
50 |
|
322 |
gduche |
51 |
public String getLabelRecherche();
|
560 |
benjamin |
52 |
|
533 |
jpm |
53 |
public String getContientMots();
|
560 |
benjamin |
54 |
|
451 |
aurelien |
55 |
public String getDepartement();
|
560 |
benjamin |
56 |
|
457 |
aurelien |
57 |
public HasWidgets getCommune();
|
560 |
benjamin |
58 |
|
386 |
aurelien |
59 |
public HasWidgets getTaxon();
|
560 |
benjamin |
60 |
|
451 |
aurelien |
61 |
public String getFamille();
|
560 |
benjamin |
62 |
|
451 |
aurelien |
63 |
public String getGenre();
|
560 |
benjamin |
64 |
|
451 |
aurelien |
65 |
public String getMotCle();
|
560 |
benjamin |
66 |
|
451 |
aurelien |
67 |
public String getAuteur();
|
560 |
benjamin |
68 |
|
451 |
aurelien |
69 |
public String getDate();
|
560 |
benjamin |
70 |
|
533 |
jpm |
71 |
public void setValeurRechercheSimple(String valeurRecherche);
|
560 |
benjamin |
72 |
|
533 |
jpm |
73 |
public void setContientMots(String mots);
|
560 |
benjamin |
74 |
|
533 |
jpm |
75 |
public void setValeurDepartement(String dpt);
|
560 |
benjamin |
76 |
|
335 |
benjamin |
77 |
public void chargerValeursRecherchePrecedente(InformationsRecherche informationsRecherche);
|
560 |
benjamin |
78 |
|
407 |
gduche |
79 |
public void focusSaisie();
|
560 |
benjamin |
80 |
|
420 |
gduche |
81 |
public void nettoyer();
|
564 |
benjamin |
82 |
|
|
|
83 |
public HasKeyPressHandlers getChampsFamille();
|
|
|
84 |
|
|
|
85 |
public HasKeyPressHandlers getChampsGenre();
|
|
|
86 |
|
|
|
87 |
public HasKeyPressHandlers getChampsMotCle();
|
|
|
88 |
|
|
|
89 |
public HasKeyPressHandlers getChampsAuteur();
|
|
|
90 |
|
|
|
91 |
public HasKeyPressHandlers getChampsDate();
|
671 |
aurelien |
92 |
|
|
|
93 |
public HasKeyPressHandlers getChampsDepartement();
|
|
|
94 |
|
|
|
95 |
public HasKeyPressHandlers getChampsContientMots();
|
1120 |
gduche |
96 |
|
|
|
97 |
public HasWidgets getZoneRss();
|
564 |
benjamin |
98 |
|
1367 |
aurelien |
99 |
public String getReferentiel();
|
|
|
100 |
|
|
|
101 |
public void setReferentielLectureSeule(boolean lectureSeule);
|
|
|
102 |
|
|
|
103 |
void remplirListeReferentiels(Map<String, String> listeReferentiels);
|
|
|
104 |
|
322 |
gduche |
105 |
}
|
|
|
106 |
|
553 |
jpm |
107 |
private Vue vue;
|
|
|
108 |
private Config config;
|
457 |
aurelien |
109 |
private ModeRecherche modeRecherche;
|
1120 |
gduche |
110 |
private RssPresenteur presenteurRss;
|
|
|
111 |
|
560 |
benjamin |
112 |
public enum TypeMoteur {
|
|
|
113 |
SIMPLE, AVANCEE
|
|
|
114 |
};
|
|
|
115 |
|
533 |
jpm |
116 |
private TypeMoteur typeMoteur = TypeMoteur.SIMPLE;
|
420 |
gduche |
117 |
|
553 |
jpm |
118 |
private AutoCompletionComboBoxPresenteur completionTaxonsPresenteur = null;
|
|
|
119 |
private AutoCompletionComboBoxPresenteur completionCommunesPresenteur = null;
|
560 |
benjamin |
120 |
|
451 |
aurelien |
121 |
public MoteurRecherchePresenteur(Vue vue, ModeRecherche mode) {
|
585 |
jpm |
122 |
initialiser(vue, mode, new Config());
|
322 |
gduche |
123 |
}
|
560 |
benjamin |
124 |
|
585 |
jpm |
125 |
public MoteurRecherchePresenteur(AutoCompletionComboBoxPresenteur presenteurAutoCompletionTaxon, AutoCompletionComboBoxPresenteur presenteurAutoCompletionCommunes, Vue vue, ModeRecherche mode, Config configuration) {
|
553 |
jpm |
126 |
completionTaxonsPresenteur = presenteurAutoCompletionTaxon;
|
|
|
127 |
completionCommunesPresenteur = presenteurAutoCompletionCommunes;
|
585 |
jpm |
128 |
initialiser(vue, mode, configuration);
|
553 |
jpm |
129 |
}
|
560 |
benjamin |
130 |
|
585 |
jpm |
131 |
private void initialiser(Vue vue, ModeRecherche mode, Config configuration) {
|
1120 |
gduche |
132 |
|
1130 |
gduche |
133 |
//TODO : fixer le flux avant de le mettre en place
|
|
|
134 |
//this.presenteurRss = new RssPresenteur(new RssVue(), CacheClient.getInstance().getInformationsRechercheObservation(), "S'abonner au flux rss des résultats de cette recherche");
|
|
|
135 |
//presenteurRss.go(vue.getZoneRss());
|
1120 |
gduche |
136 |
|
451 |
aurelien |
137 |
this.vue = vue;
|
|
|
138 |
setMode(mode);
|
585 |
jpm |
139 |
this.config = configuration;
|
560 |
benjamin |
140 |
if (completionTaxonsPresenteur == null)
|
|
|
141 |
this.creerCompletionTaxons();
|
|
|
142 |
if (completionCommunesPresenteur == null)
|
|
|
143 |
this.creerCompletionCommunes();
|
451 |
aurelien |
144 |
gererEvenements();
|
1367 |
aurelien |
145 |
|
|
|
146 |
vue.remplirListeReferentiels(ReferentielService.getReferentiels());
|
|
|
147 |
if(CacheClient.getInstance().getReferentielNonModifiable()) {
|
|
|
148 |
vue.setReferentielLectureSeule(true);
|
|
|
149 |
}
|
451 |
aurelien |
150 |
}
|
560 |
benjamin |
151 |
|
533 |
jpm |
152 |
public ModeRecherche getMode() {
|
|
|
153 |
return modeRecherche;
|
|
|
154 |
}
|
560 |
benjamin |
155 |
|
533 |
jpm |
156 |
private void setMode(ModeRecherche mode) {
|
|
|
157 |
modeRecherche = mode;
|
|
|
158 |
}
|
585 |
jpm |
159 |
|
|
|
160 |
public TypeMoteur getTypeMoteur() {
|
|
|
161 |
return this.typeMoteur;
|
|
|
162 |
}
|
|
|
163 |
|
533 |
jpm |
164 |
public void setTypeMoteur(TypeMoteur typeMoteur) {
|
|
|
165 |
this.typeMoteur = typeMoteur;
|
|
|
166 |
}
|
335 |
benjamin |
167 |
|
533 |
jpm |
168 |
public boolean estPourRechercheImages() {
|
|
|
169 |
return (modeRecherche == ModeRecherche.MODE_IMAGE);
|
|
|
170 |
}
|
|
|
171 |
|
|
|
172 |
public boolean estPourRechercheObservations() {
|
|
|
173 |
return (modeRecherche == ModeRecherche.MODE_OBSERVATION);
|
560 |
benjamin |
174 |
}
|
533 |
jpm |
175 |
|
545 |
jpm |
176 |
private void creerCompletionTaxons() {
|
944 |
gduche |
177 |
String url = this.config.getServiceBaseUrl() + "nomstaxons";
|
553 |
jpm |
178 |
completionTaxonsPresenteur = new AutoCompletionComboBoxPresenteur(new AutoCompletionComboBoxVue(), url) {
|
545 |
jpm |
179 |
protected String effectuerPreTraitementChaineRequete(String requete) {
|
1367 |
aurelien |
180 |
// si aucun référentiel selectionné, pas de requete
|
|
|
181 |
if(vue.getReferentiel() != null && !vue.getReferentiel().equals("")) {
|
|
|
182 |
requete = "?masque.nom=" + requete + "&masque.referentiel=" + vue.getReferentiel();
|
1393 |
aurelien |
183 |
return requete;
|
1367 |
aurelien |
184 |
} else {
|
|
|
185 |
return null;
|
|
|
186 |
}
|
545 |
jpm |
187 |
// A décommenter lors de l'utilisation des web services eflore
|
|
|
188 |
// return
|
|
|
189 |
// RetourAutoCompletionService.effectuerPreTraitementChaineRequeteGenreEspeceEflore(requete);
|
|
|
190 |
}
|
|
|
191 |
|
|
|
192 |
@Override
|
|
|
193 |
protected String[] parserResultatRequete(Response response) {
|
944 |
gduche |
194 |
return UtilitairesAutoCompletionService.parserResultatRetourSimple(response);
|
545 |
jpm |
195 |
// A décommenter lors de l'utilisation des web services eflore
|
|
|
196 |
// return RetourAutoCompletionService.parserRetourOss(response);
|
|
|
197 |
}
|
|
|
198 |
};
|
|
|
199 |
}
|
560 |
benjamin |
200 |
|
545 |
jpm |
201 |
private void creerCompletionCommunes() {
|
938 |
gduche |
202 |
String url = this.config.getServiceBaseUrl() + "communes";
|
553 |
jpm |
203 |
completionCommunesPresenteur = new AutoCompletionComboBoxPresenteur(new AutoCompletionComboBoxVue(), url) {
|
545 |
jpm |
204 |
protected String effectuerPreTraitementChaineRequete(String requete) {
|
938 |
gduche |
205 |
requete = "?masque.nom=" + requete;
|
545 |
jpm |
206 |
return requete;
|
|
|
207 |
}
|
560 |
benjamin |
208 |
|
545 |
jpm |
209 |
@Override
|
|
|
210 |
protected void surSelectionSuggestion(String suggestion) {
|
560 |
benjamin |
211 |
setValeur(suggestion);
|
552 |
benjamin |
212 |
collecterInfosRecherche();
|
|
|
213 |
setValeur(getInformationsRechercheEnCache().getCommune());
|
|
|
214 |
vue.setValeurDepartement(getInformationsRechercheEnCache().getDepartement());
|
545 |
jpm |
215 |
}
|
|
|
216 |
|
|
|
217 |
@Override
|
|
|
218 |
protected String[] parserResultatRequete(Response response) {
|
938 |
gduche |
219 |
return UtilitairesAutoCompletionService.parserResultatRetourSimple(response);
|
545 |
jpm |
220 |
}
|
|
|
221 |
};
|
|
|
222 |
}
|
560 |
benjamin |
223 |
|
322 |
gduche |
224 |
@Override
|
|
|
225 |
public void go(HasWidgets composite) {
|
335 |
benjamin |
226 |
afficherRequeteEtLancerRecherche();
|
545 |
jpm |
227 |
completionTaxonsPresenteur.go(vue.getTaxon());
|
|
|
228 |
completionCommunesPresenteur.go(vue.getCommune());
|
451 |
aurelien |
229 |
vue.ajouterVue(composite);
|
407 |
gduche |
230 |
vue.focusSaisie();
|
322 |
gduche |
231 |
}
|
|
|
232 |
|
|
|
233 |
@Override
|
|
|
234 |
protected void gererEvenements() {
|
|
|
235 |
vue.getLienRechercheAvancee().addClickHandler(new ClickHandler() {
|
|
|
236 |
public void onClick(ClickEvent event) {
|
560 |
benjamin |
237 |
setTypeMoteur(TypeMoteur.AVANCEE);
|
533 |
jpm |
238 |
vue.setContientMots(vue.getValeurRechercheSimple());
|
322 |
gduche |
239 |
vue.basculerAffichageZoneCache();
|
|
|
240 |
}
|
|
|
241 |
});
|
335 |
benjamin |
242 |
|
322 |
gduche |
243 |
vue.getBoutonRechercheSimple().addClickHandler(new ClickHandler() {
|
|
|
244 |
public void onClick(ClickEvent event) {
|
533 |
jpm |
245 |
setTypeMoteur(TypeMoteur.SIMPLE);
|
335 |
benjamin |
246 |
collecterInfosRecherche();
|
445 |
benjamin |
247 |
afficherRequeteEtLancerRecherche();
|
322 |
gduche |
248 |
}
|
|
|
249 |
});
|
335 |
benjamin |
250 |
|
408 |
gduche |
251 |
vue.getBoutonFermer().addClickHandler(new ClickHandler() {
|
|
|
252 |
public void onClick(ClickEvent event) {
|
533 |
jpm |
253 |
vue.setValeurRechercheSimple(vue.getContientMots());
|
408 |
gduche |
254 |
vue.basculerAffichageZoneCache();
|
|
|
255 |
}
|
|
|
256 |
});
|
420 |
gduche |
257 |
|
|
|
258 |
vue.getBoutonVider().addClickHandler(new ClickHandler() {
|
|
|
259 |
public void onClick(ClickEvent event) {
|
457 |
aurelien |
260 |
nettoyerChamps();
|
420 |
gduche |
261 |
InformationsRecherche infosRecherche = new InformationsRecherche();
|
451 |
aurelien |
262 |
if (estPourRechercheImages()) {
|
420 |
gduche |
263 |
CacheClient.getInstance().setInformationsRechercheImage(infosRecherche);
|
451 |
aurelien |
264 |
} else if (estPourRechercheObservations()) {
|
420 |
gduche |
265 |
CacheClient.getInstance().setInformationsRechercheObservation(infosRecherche);
|
|
|
266 |
}
|
|
|
267 |
}
|
|
|
268 |
});
|
|
|
269 |
|
322 |
gduche |
270 |
vue.getBoutonRechercheAvancee().addClickHandler(new ClickHandler() {
|
|
|
271 |
public void onClick(ClickEvent event) {
|
533 |
jpm |
272 |
setTypeMoteur(TypeMoteur.AVANCEE);
|
335 |
benjamin |
273 |
collecterInfosRecherche();
|
|
|
274 |
vue.basculerAffichageZoneCache();
|
|
|
275 |
afficherRequeteEtLancerRecherche();
|
322 |
gduche |
276 |
}
|
|
|
277 |
});
|
335 |
benjamin |
278 |
|
322 |
gduche |
279 |
vue.getChampSaisie().addKeyPressHandler(new KeyPressHandler() {
|
|
|
280 |
public void onKeyPress(KeyPressEvent event) {
|
|
|
281 |
if (event.getNativeEvent().getKeyCode() == KeyCodes.KEY_ENTER) {
|
533 |
jpm |
282 |
setTypeMoteur(TypeMoteur.SIMPLE);
|
335 |
benjamin |
283 |
collecterInfosRecherche();
|
445 |
benjamin |
284 |
afficherRequeteEtLancerRecherche();
|
322 |
gduche |
285 |
}
|
|
|
286 |
}
|
|
|
287 |
});
|
335 |
benjamin |
288 |
|
322 |
gduche |
289 |
vue.getChampSaisieCliquable().addClickHandler(new ClickHandler() {
|
|
|
290 |
public void onClick(ClickEvent event) {
|
445 |
benjamin |
291 |
if (vue.getValeurRechercheSimple().equals(vue.getLabelRecherche())) {
|
322 |
gduche |
292 |
vue.setValeurRechercheSimple("");
|
|
|
293 |
}
|
|
|
294 |
}
|
|
|
295 |
});
|
564 |
benjamin |
296 |
|
597 |
aurelien |
297 |
vue.getChampsAuteur().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
|
|
|
298 |
vue.getChampsDate().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
|
|
|
299 |
vue.getChampsFamille().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
|
|
|
300 |
vue.getChampsGenre().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
|
|
|
301 |
vue.getChampsMotCle().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
|
671 |
aurelien |
302 |
vue.getChampsDepartement().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
|
|
|
303 |
vue.getChampsContientMots().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
|
564 |
benjamin |
304 |
|
322 |
gduche |
305 |
}
|
560 |
benjamin |
306 |
|
597 |
aurelien |
307 |
public KeyPressHandler creerGestionnaireEvenementToucheEntree() {
|
564 |
benjamin |
308 |
return new KeyPressHandler() {
|
|
|
309 |
public void onKeyPress(KeyPressEvent event) {
|
|
|
310 |
if (event.getNativeEvent().getKeyCode() == KeyCodes.KEY_ENTER) {
|
|
|
311 |
vue.basculerAffichageZoneCache();
|
|
|
312 |
collecterInfosRecherche();
|
|
|
313 |
afficherRequeteEtLancerRecherche();
|
|
|
314 |
}
|
|
|
315 |
}
|
|
|
316 |
};
|
|
|
317 |
}
|
|
|
318 |
|
457 |
aurelien |
319 |
private void nettoyerChamps() {
|
545 |
jpm |
320 |
completionCommunesPresenteur.nettoyer();
|
|
|
321 |
completionTaxonsPresenteur.nettoyer();
|
457 |
aurelien |
322 |
vue.nettoyer();
|
|
|
323 |
}
|
335 |
benjamin |
324 |
|
451 |
aurelien |
325 |
public void collecterInfosRecherche() {
|
335 |
benjamin |
326 |
InformationsRecherche informationRecherche = new InformationsRecherche();
|
533 |
jpm |
327 |
informationRecherche.setRechercheLibre(this.getRechercheLibre());
|
545 |
jpm |
328 |
if (this.typeMoteur == TypeMoteur.AVANCEE) {
|
|
|
329 |
informationRecherche.setTaxon(completionTaxonsPresenteur.getValeur());
|
|
|
330 |
informationRecherche.setDepartement(vue.getDepartement());
|
|
|
331 |
informationRecherche.setCommune(completionCommunesPresenteur.getValeur());
|
|
|
332 |
informationRecherche.setFamille(vue.getFamille());
|
|
|
333 |
informationRecherche.setGenre(vue.getGenre());
|
|
|
334 |
informationRecherche.setMotClef(vue.getMotCle());
|
581 |
gduche |
335 |
informationRecherche.setTag(vue.getMotCle());
|
545 |
jpm |
336 |
informationRecherche.setAuteur(vue.getAuteur());
|
|
|
337 |
informationRecherche.setDate(vue.getDate());
|
1367 |
aurelien |
338 |
informationRecherche.setReferentiel(vue.getReferentiel());
|
545 |
jpm |
339 |
}
|
1367 |
aurelien |
340 |
|
|
|
341 |
if(CacheClient.getInstance().getReferentielNonModifiable()) {
|
|
|
342 |
informationRecherche.setReferentiel(CacheClient.getInstance().getReferentielCourant());
|
|
|
343 |
}
|
445 |
benjamin |
344 |
|
451 |
aurelien |
345 |
if (estPourRechercheImages()) {
|
488 |
benjamin |
346 |
CacheClient.getInstance().setPageCouranteRechercheImages(1);
|
445 |
benjamin |
347 |
CacheClient.getInstance().setInformationsRechercheImage(informationRecherche);
|
451 |
aurelien |
348 |
} else if (estPourRechercheObservations()) {
|
488 |
benjamin |
349 |
CacheClient.getInstance().setPageCouranteRechercheObservations(1);
|
445 |
benjamin |
350 |
CacheClient.getInstance().setInformationsRechercheObservation(informationRecherche);
|
335 |
benjamin |
351 |
}
|
322 |
gduche |
352 |
}
|
560 |
benjamin |
353 |
|
533 |
jpm |
354 |
private String getRechercheLibre() {
|
|
|
355 |
String rechercheLibre = "";
|
|
|
356 |
switch (this.typeMoteur) {
|
560 |
benjamin |
357 |
case SIMPLE:
|
|
|
358 |
rechercheLibre = vue.getValeurRechercheSimple();
|
|
|
359 |
break;
|
|
|
360 |
case AVANCEE:
|
|
|
361 |
rechercheLibre = vue.getContientMots();
|
|
|
362 |
break;
|
|
|
363 |
default:
|
|
|
364 |
// TODO : voir comment gérer les exceptions proprement
|
|
|
365 |
// throw new
|
1367 |
aurelien |
366 |
// Exception("Le type de moteur de recherche indiqué n'est pas disponible");
|
533 |
jpm |
367 |
}
|
|
|
368 |
return rechercheLibre;
|
|
|
369 |
}
|
335 |
benjamin |
370 |
|
|
|
371 |
private InformationsRecherche getInformationsRechercheEnCache() {
|
451 |
aurelien |
372 |
if (estPourRechercheImages()) {
|
335 |
benjamin |
373 |
return CacheClient.getInstance().getInformationsRechercheImage();
|
451 |
aurelien |
374 |
} else if (estPourRechercheObservations()) {
|
445 |
benjamin |
375 |
return CacheClient.getInstance().getInformationsRechercheObservation();
|
335 |
benjamin |
376 |
}
|
|
|
377 |
return null;
|
|
|
378 |
}
|
|
|
379 |
|
|
|
380 |
public void afficherRequeteEtLancerRecherche() {
|
|
|
381 |
InformationsRecherche informationsRecherche = getInformationsRechercheEnCache();
|
|
|
382 |
if (informationsRecherche != null) {
|
545 |
jpm |
383 |
completionTaxonsPresenteur.setValeur(informationsRecherche.getTaxon());
|
552 |
benjamin |
384 |
completionCommunesPresenteur.setValeur(informationsRecherche.getCommune());
|
335 |
benjamin |
385 |
vue.chargerValeursRecherchePrecedente(informationsRecherche);
|
|
|
386 |
}
|
|
|
387 |
lancerRecherche();
|
1130 |
gduche |
388 |
//presenteurRss.genererLien(informationsRecherche);
|
335 |
benjamin |
389 |
}
|
|
|
390 |
|
445 |
benjamin |
391 |
public abstract void lancerRecherche();
|
322 |
gduche |
392 |
}
|