Subversion Repositories eFlore/Applications.del

Rev

Rev 210 | Rev 308 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
200 gduche 1
package org.tela_botanica.del.client.vues.rechercheobservations;
2
 
3
import org.tela_botanica.del.client.composants.presenteur.Presenteur;
4
 
5
import com.google.gwt.user.client.ui.HasWidgets;
6
 
7
public class DetailImagePresenteur extends Presenteur {
8
 
9
	public DetailImagePresenteur(String urlImage, String texteAlternatif) {
10
		super(new DetailImageVue(urlImage, texteAlternatif));
11
	}
12
 
13
	@Override
14
	public void go(HasWidgets composite) {
15
		composite.add(this.getVue());
16
	}
17
 
18
	@Override
220 gduche 19
	protected void gererEvenements() {
200 gduche 20
		// TODO Auto-generated method stub
21
 
22
	}
23
 
24
}