Rev 210 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package org.tela_botanica.del.client.vues.rechercheobservations;
import org.tela_botanica.del.client.composants.presenteur.Presenteur;
import com.google.gwt.user.client.ui.HasWidgets;
public class DetailImagePresenteur extends Presenteur {
public DetailImagePresenteur(String urlImage, String texteAlternatif) {
super(new DetailImageVue(urlImage, texteAlternatif));
}
@Override
public void go(HasWidgets composite) {
composite.add(this.getVue());
}
@Override
protected void handleEvents() {
// TODO Auto-generated method stub
}
}