166 |
gduche |
1 |
package org.tela_botanica.del.client.vues.rechercheobservations;
|
|
|
2 |
|
|
|
3 |
import com.google.gwt.core.client.GWT;
|
|
|
4 |
import com.google.gwt.uibinder.client.UiBinder;
|
|
|
5 |
import com.google.gwt.uibinder.client.UiField;
|
|
|
6 |
import com.google.gwt.user.client.ui.Composite;
|
183 |
gduche |
7 |
import com.google.gwt.user.client.ui.FlexTable;
|
|
|
8 |
import com.google.gwt.user.client.ui.Image;
|
166 |
gduche |
9 |
import com.google.gwt.user.client.ui.Label;
|
|
|
10 |
import com.google.gwt.user.client.ui.Widget;
|
|
|
11 |
|
|
|
12 |
public class ObservationVue extends Composite {
|
|
|
13 |
|
|
|
14 |
// Gestion d'UiBinder
|
|
|
15 |
interface Binder extends UiBinder<Widget, ObservationVue> {
|
|
|
16 |
}
|
|
|
17 |
|
|
|
18 |
private static Binder binder = GWT.create(Binder.class);
|
|
|
19 |
|
|
|
20 |
@UiField
|
|
|
21 |
protected Label auteur, date, famille, localite, motsClefs, nomRetenu, numNomenclatural;
|
|
|
22 |
|
183 |
gduche |
23 |
@UiField
|
|
|
24 |
protected FlexTable tableauPropositions;
|
|
|
25 |
|
|
|
26 |
@UiField
|
|
|
27 |
protected Image photoPrincipale;
|
|
|
28 |
|
166 |
gduche |
29 |
public ObservationVue() {
|
|
|
30 |
initWidget(binder.createAndBindUi(this));
|
|
|
31 |
}
|
|
|
32 |
}
|