184 |
benjamin |
1 |
package org.tela_botanica.del.client.vues.vueinitiale;
|
|
|
2 |
|
|
|
3 |
import org.tela_botanica.del.client.gestionhistorique.ConstantesNavigation;
|
|
|
4 |
|
|
|
5 |
import com.google.gwt.core.client.GWT;
|
|
|
6 |
import com.google.gwt.uibinder.client.UiBinder;
|
|
|
7 |
import com.google.gwt.uibinder.client.UiField;
|
|
|
8 |
import com.google.gwt.user.client.ui.Composite;
|
|
|
9 |
import com.google.gwt.user.client.ui.Hyperlink;
|
|
|
10 |
import com.google.gwt.user.client.ui.Widget;
|
|
|
11 |
|
|
|
12 |
public class VueInitiale extends Composite {
|
|
|
13 |
|
|
|
14 |
// Gestion d'UiBinder
|
|
|
15 |
interface Binder extends UiBinder<Widget, VueInitiale> {
|
|
|
16 |
}
|
|
|
17 |
|
|
|
18 |
private static Binder binder = GWT.create(Binder.class);
|
|
|
19 |
|
|
|
20 |
@UiField
|
|
|
21 |
protected Hyperlink lienRechercheImages;
|
|
|
22 |
|
|
|
23 |
@UiField
|
|
|
24 |
protected Hyperlink lienRechercheObservations;
|
|
|
25 |
|
|
|
26 |
// Constructeur de la vue
|
|
|
27 |
public VueInitiale() {
|
|
|
28 |
initWidget(binder.createAndBindUi(this));
|
|
|
29 |
|
|
|
30 |
lienRechercheImages.setText("Recherche par image");
|
|
|
31 |
lienRechercheImages.setTargetHistoryToken(ConstantesNavigation.PAGE_RECHERCHE_IMAGES);
|
|
|
32 |
|
|
|
33 |
lienRechercheObservations.setText("Recherche par observation");
|
|
|
34 |
lienRechercheObservations.setTargetHistoryToken(ConstantesNavigation.PAGE_RECHERCHE_OBSERVATIONS);
|
|
|
35 |
}
|
|
|
36 |
|
|
|
37 |
public Hyperlink getLienRechercheImages() {
|
|
|
38 |
return lienRechercheImages;
|
|
|
39 |
}
|
|
|
40 |
|
|
|
41 |
public Hyperlink getLienRechercheObservations() {
|
|
|
42 |
return lienRechercheObservations;
|
|
|
43 |
}
|
|
|
44 |
|
|
|
45 |
}
|