Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1592 Rev 1667
Line 26... Line 26...
26
 
26
 
Line 27... Line 27...
27
	private static Binder binder = GWT.create(Binder.class);
27
	private static Binder binder = GWT.create(Binder.class);
28
 
28
 
29
	@UiField
29
	@UiField
-
 
30
	Label nomRetenu, famille, auteur, localite, motsClefs, numNomenclatural, nomCommun, commentaire, milieu, station, referentiel;
-
 
31
	
-
 
32
	@UiField
30
	Label nomRetenu, famille, auteur, localite, motsClefs, numNomenclatural, nomCommun, commentaire, milieu, station, referentiel;
33
	Anchor courrielAuteur;
31
 
34
	
Line 32... Line 35...
32
	@UiField
35
	@UiField
33
	HTML lieuDit;
36
	HTML lieuDit;
Line 63... Line 66...
63
 
66
 
64
	public HasText getAuteur() {
67
	public HasText getAuteur() {
65
		return this.auteur;
68
		return this.auteur;
Line -... Line 69...
-
 
69
	}
-
 
70
 
-
 
71
	public HasText getCourrielAuteur() {
-
 
72
		return this.courrielAuteur;
-
 
73
	}
-
 
74
	
-
 
75
	public void setCourrielAuteurHref(String courriel) {
-
 
76
		this.courrielAuteur.setHref("mailto:"+courriel);
66
	}
77
	}
67
 
78
		
68
	public HasText getDateTransmission() {
79
	public HasText getDateTransmission() {
Line 69... Line 80...
69
		return this.dateTransmission;
80
		return this.dateTransmission;
Line 111... Line 122...
111
	}
122
	}
Line 112... Line 123...
112
 
123
 
113
	public HasClickHandlers getLienAuteur() {
124
	public HasClickHandlers getLienAuteur() {
114
		return this.auteur;
125
		return this.auteur;
-
 
126
	}
-
 
127
	
-
 
128
	public HasClickHandlers getLienCourrielAuteur() {
-
 
129
		return this.courrielAuteur;
Line 115... Line 130...
115
	}
130
	}
116
 
131
 
117
	public HasClickHandlers getLienDateTransmission() {
132
	public HasClickHandlers getLienDateTransmission() {
Line 146... Line 161...
146
		return commentaire;
161
		return commentaire;
147
	}
162
	}
Line 148... Line 163...
148
 
163
 
149
	@Override
164
	@Override
150
	public void masquerChampsVides() {
165
	public void masquerChampsVides() {
151
		HasText[] champs = {nomRetenu, nomCommun, famille, localite, auteur,  motsClefs,  commentaire, milieu, lieuDit, dateReleve, dateTransmission};
166
		HasText[] champs = {nomRetenu, nomCommun, famille, localite, auteur, motsClefs, commentaire, milieu, lieuDit, dateReleve, dateTransmission};
152
		for (int i = 0; i < champs.length; i ++) {
167
		for (int i = 0; i < champs.length; i ++) {
153
			HasText champ = champs[i];
168
			HasText champ = champs[i];
154
			if ("".equals(champ.getText())) {
169
			if ("".equals(champ.getText())) {
155
				Widget widget = (Widget) champ;
170
				Widget widget = (Widget) champ;
Line 162... Line 177...
162
	public void setStation(String station) {
177
	public void setStation(String station) {
163
		if (station.equals("")) {
178
		if (station.equals("")) {
164
			this.zoneStation.setVisible(false);
179
			this.zoneStation.setVisible(false);
165
		} else {
180
		} else {
166
			this.station.setText(station);
181
			this.station.setText(station);
167
		}
182
		}	
168
		
-
 
169
	}
183
	}
Line 170... Line 184...
170
	
184
	
171
	public void activerLiens() {
185
	public void activerLiens() {
172
		dateReleve.addStyleName("labelLien");
-
 
173
		
186
		dateReleve.addStyleName("labelLien");
174
		nomRetenu.addStyleName("labelLien");
-
 
175
		
187
		nomRetenu.addStyleName("labelLien");
176
		famille.addStyleName("labelLien");
-
 
177
		
188
		famille.addStyleName("labelLien");
178
		auteur.addStyleName("labelLien");
189
		auteur.addStyleName("labelLien");
179
		localite.addStyleName("labelLien");
-
 
180
		
190
		localite.addStyleName("labelLien");
181
		motsClefs.addStyleName("labelLien");
-
 
182
		
191
		motsClefs.addStyleName("labelLien");
183
		nomCommun.addStyleName("labelLien");
-
 
184
		
192
		nomCommun.addStyleName("labelLien");
185
		commentaire.addStyleName("labelLien");
-
 
186
		
193
		commentaire.addStyleName("labelLien");
187
		milieu.addStyleName("labelLien");
194
		milieu.addStyleName("labelLien");
Line 188... Line 195...
188
	}
195
	}
189
 
196
 
Line 209... Line 216...
209
 
216
 
210
	@Override
217
	@Override
211
	public void activerLienNomRetenu() {
218
	public void activerLienNomRetenu() {
212
		// TODO Auto-generated method stub
219
		// TODO Auto-generated method stub
-
 
220
	}
-
 
221
	
-
 
222
	public void afficherCourrielAuteur() {
-
 
223
		courrielAuteur.setVisible(true);
-
 
224
	}
-
 
225
	public void cacherCourrielAuteur() {
-
 
226
		courrielAuteur.setVisible(false);
213
	}
227
	}