Subversion Repositories eFlore/Applications.del

Rev

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

Rev 623 Rev 1026
Line 8... Line 8...
8
import com.google.gwt.user.client.ui.HTML;
8
import com.google.gwt.user.client.ui.HTML;
9
import com.google.gwt.user.client.ui.HasText;
9
import com.google.gwt.user.client.ui.HasText;
10
import com.google.gwt.user.client.ui.Hyperlink;
10
import com.google.gwt.user.client.ui.Hyperlink;
11
import com.google.gwt.user.client.ui.InlineLabel;
11
import com.google.gwt.user.client.ui.InlineLabel;
12
import com.google.gwt.user.client.ui.Label;
12
import com.google.gwt.user.client.ui.Label;
-
 
13
import com.google.gwt.user.client.ui.Panel;
13
import com.google.gwt.user.client.ui.Widget;
14
import com.google.gwt.user.client.ui.Widget;
Line 14... Line 15...
14
 
15
 
15
public class MetadonneesEnLigneVue extends Composite implements MetadonneesPresenteur.Vue {
16
public class MetadonneesEnLigneVue extends Composite implements MetadonneesPresenteur.Vue {
16
	// Gestion d'UiBinder
17
	// Gestion d'UiBinder
17
	interface Binder extends UiBinder<Widget, MetadonneesEnLigneVue> {
18
	interface Binder extends UiBinder<Widget, MetadonneesEnLigneVue> {
Line 18... Line 19...
18
	}
19
	}
Line 19... Line 20...
19
 
20
 
20
	private static Binder binder = GWT.create(Binder.class);
21
	private static Binder binder = GWT.create(Binder.class);
Line 21... Line 22...
21
 
22
 
22
	@UiField
23
	@UiField
-
 
24
	Hyperlink nomRetenu, famille, auteur, localite, motsClefs, numNomenclatural, nomCommun, commentaire, milieu, station;
-
 
25
 
-
 
26
	@UiField
Line 23... Line 27...
23
	Hyperlink nomRetenu, famille, auteur, localite, motsClefs, numNomenclatural, nomCommun, commentaire, milieu;
27
	HTML lieuDit;
24
 
28
	
Line 25... Line 29...
25
	@UiField
29
	@UiField
Line 135... Line 139...
135
				widget.getParent().setVisible(false);
139
				widget.getParent().setVisible(false);
136
			}
140
			}
137
		}
141
		}
138
	}
142
	}
Line -... Line 143...
-
 
143
 
-
 
144
	@Override
-
 
145
	public void setStation(String station) {
-
 
146
		if (station.equals("")) {
-
 
147
			this.zoneStation.setVisible(false);
-
 
148
		} else {
-
 
149
			this.station.setText(station);
-
 
150
		}
-
 
151
		
-
 
152
	}
139
 
153