Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1404 Rev 1467
Line 151... Line 151...
151
				protocoleCourant = protocole;
151
				protocoleCourant = protocole;
152
			}
152
			}
153
		}
153
		}
154
		vue.mettreAJourDescriptionProtocoleCourant(protocoleCourant);
154
		vue.mettreAJourDescriptionProtocoleCourant(protocoleCourant);
155
		CacheClient.getInstance().setProtocoleCourant(protocoleCourant);
155
		CacheClient.getInstance().setProtocoleCourant(protocoleCourant);
-
 
156
		CacheClient.getInstance().mettreAjourUrlCourante();
156
		EvenementChangementProtocole evenement = new EvenementChangementProtocole(protocoleCourant);
157
		EvenementChangementProtocole evenement = new EvenementChangementProtocole(protocoleCourant);
157
		BusEvenementiel.getInstance().fireEvent(evenement);
158
		BusEvenementiel.getInstance().fireEvent(evenement);
158
	}
159
	}
Line 159... Line 160...
159
	
160
	
160
	private void remplirListeProtocole(List<Protocole> protocoles) {
161
	private void remplirListeProtocole(List<Protocole> protocoles) {
161
		//si un paramètre est passé dans l'url, on sélectionne un protocole
162
		//si un paramètre est passé dans l'url, on sélectionne un protocole
162
		String parametre = URLUtils.getURLSpecialParameterValue();
163
		String parametre = URLUtils.getURLSpecialParameterValue();
163
		if (parametre != null) {
164
		if (parametre != null) {
164
			for (Protocole protocoleCourant : protocoles) {
165
			for (Protocole protocoleCourant : protocoles) {
-
 
166
					if (parametre.equals(String.valueOf(protocoleCourant.getId()))) {
165
					if (parametre.equals(String.valueOf(protocoleCourant.getId()))) {
167
						CacheClient.getInstance().mettreAjourUrlCourante();
166
						CacheClient.getInstance().setProtocoleCourant(protocoleCourant);
168
						CacheClient.getInstance().setProtocoleCourant(protocoleCourant);
167
					}
169
					}
168
			}
170
			}
169
		}
171
		}
Line 191... Line 193...
191
		presenteurRecherche.go(vue.getZoneRecherche());
193
		presenteurRecherche.go(vue.getZoneRecherche());
192
	}
194
	}
Line 193... Line 195...
193
 
195
 
194
	public void chercherImages() {
196
	public void chercherImages() {
-
 
197
		vue.getZoneResultats().clear();
195
		vue.getZoneResultats().clear();
198
		CacheClient.getInstance().mettreAjourUrlCourante();
196
		new ResultatPictofloraPresenteur(new ImageServiceConcret(), new ProtocoleServiceConcret(), new ResultatPictofloraVue()).go(vue.getZoneResultats());
199
		new ResultatPictofloraPresenteur(new ImageServiceConcret(), new ProtocoleServiceConcret(), new ResultatPictofloraVue()).go(vue.getZoneResultats());
Line 197... Line 200...
197
	}
200
	}
198
 
201