Subversion Repositories eFlore/Applications.del

Rev

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

Rev 471 Rev 552
Line 1... Line 1...
1
package org.tela_botanica.del.client.composants.metadonnees;
1
package org.tela_botanica.del.client.composants.metadonnees;
Line 2... Line 2...
2
 
2
 
-
 
3
import com.google.gwt.core.client.GWT;
3
import com.google.gwt.core.client.GWT;
4
import com.google.gwt.event.dom.client.HasClickHandlers;
4
import com.google.gwt.uibinder.client.UiBinder;
5
import com.google.gwt.uibinder.client.UiBinder;
5
import com.google.gwt.uibinder.client.UiField;
6
import com.google.gwt.uibinder.client.UiField;
6
import com.google.gwt.user.client.ui.Composite;
7
import com.google.gwt.user.client.ui.Composite;
-
 
8
import com.google.gwt.user.client.ui.HasText;
7
import com.google.gwt.user.client.ui.HasText;
9
import com.google.gwt.user.client.ui.Hyperlink;
8
import com.google.gwt.user.client.ui.InlineLabel;
10
import com.google.gwt.user.client.ui.InlineLabel;
9
import com.google.gwt.user.client.ui.Label;
11
import com.google.gwt.user.client.ui.Label;
Line 10... Line 12...
10
import com.google.gwt.user.client.ui.Widget;
12
import com.google.gwt.user.client.ui.Widget;
11
 
13
 
12
public class MetadonneesVue extends Composite implements MetadonneesPresenteur.Vue {
14
public class MetadonneesVue extends Composite implements MetadonneesPresenteur.Vue {
13
	// Gestion d'UiBinder
15
	// Gestion d'UiBinder
14
	interface Binder extends UiBinder<Widget, MetadonneesVue> {
16
	interface Binder extends UiBinder<Widget, MetadonneesVue> {
15
	}
17
	}
16
	
18
 
-
 
19
	private static Binder binder = GWT.create(Binder.class);
17
	private static Binder binder = GWT.create(Binder.class);
20
 
-
 
21
	@UiField
18
	
22
	Hyperlink nomRetenu, famille, auteur, localite, motsClefs, numNomenclatural, nomCommun, lieuDit, commentaire, milieu;
19
	@UiField Label nomRetenu, famille, auteur, localite, motsClefs, numNomenclatural, nomCommun, lieuDit, commentaire, milieu;
23
	@UiField
20
	@UiField InlineLabel dateReleve, dateTransmission;
24
	InlineLabel dateReleve, dateTransmission;
21
	
25
 
22
	public MetadonneesVue() {
26
	public MetadonneesVue() {
23
		initWidget(binder.createAndBindUi(this));
27
		initWidget(binder.createAndBindUi(this));
24
	}
28
	}
25
	
29
 
26
	public HasText getNomRetenu() {
30
	public HasText getNomRetenu() {
27
		return this.nomRetenu;
31
		return this.nomRetenu;
28
	}
32
	}
29
	
33
 
30
	public HasText getFamille() {
34
	public HasText getFamille() {
31
		return this.famille;
35
		return this.famille;
32
	}
36
	}
33
	
37
 
34
	public HasText getAuteur() {
38
	public HasText getAuteur() {
35
		return this.auteur;
39
		return this.auteur;
36
	}
40
	}
37
	
41
 
38
	public HasText getDateTransmission() {
42
	public HasText getDateTransmission() {
39
		return this.dateTransmission;
43
		return this.dateTransmission;
40
	}
44
	}
41
	
45
 
42
	public HasText getDateReleve() {
46
	public HasText getDateReleve() {
43
		return this.dateReleve;
47
		return this.dateReleve;
44
	}
48
	}
45
	
49
 
46
	public HasText getLocalite() {
50
	public HasText getLocalite() {
47
		return this.localite;
51
		return this.localite;
48
	}
52
	}
49
	
53
 
50
	public HasText getMotsClefs() {
54
	public HasText getMotsClefs() {
51
		return this.motsClefs;
55
		return this.motsClefs;
52
	}
56
	}
53
	
57
 
54
	public HasText getNumNomenclatural() {
58
	public HasText getNumNomenclatural() {
Line 55... Line 59...
55
		return this.numNomenclatural;
59
		return this.numNomenclatural;
Line 68... Line 72...
68
	}
72
	}
Line 69... Line 73...
69
 
73
 
70
	public HasText getCommentaire() {
74
	public HasText getCommentaire() {
71
		return commentaire;
75
		return commentaire;
-
 
76
	}
-
 
77
 
-
 
78
	@Override
-
 
79
	public HasClickHandlers getLienNomRetenu() {
-
 
80
		return nomRetenu;
Line -... Line 81...
-
 
81
	}
-
 
82
	
-
 
83
	public HasClickHandlers getLienFamille() {
-
 
84
		return this.famille;
-
 
85
	}
-
 
86
 
-
 
87
	public HasClickHandlers getLienAuteur() {
-
 
88
		return this.auteur;
-
 
89
	}
-
 
90
 
-
 
91
	public HasClickHandlers getLienDateTransmission() {
-
 
92
		return this.dateTransmission;
-
 
93
	}
-
 
94
 
-
 
95
	public HasClickHandlers getLienDateReleve() {
-
 
96
		return this.dateReleve;
-
 
97
	}
-
 
98
 
-
 
99
	public HasClickHandlers getLienLocalite() {
-
 
100
		return this.localite;
-
 
101
	}
-
 
102
 
-
 
103
	public HasClickHandlers getLienMotsClefs() {
-
 
104
		return this.motsClefs;
-
 
105
	}
-
 
106
 
-
 
107
	public HasClickHandlers getLienNumNomenclatural() {
-
 
108
		return this.numNomenclatural;
-
 
109
	}
-
 
110
 
-
 
111
	public HasClickHandlers getLienNomCommun() {
-
 
112
		return nomCommun;
-
 
113
	}
-
 
114
 
-
 
115
	public HasClickHandlers getLienLieuDit() {
-
 
116
		return lieuDit;
-
 
117
	}
-
 
118
 
-
 
119
	public HasClickHandlers getLienMilieu() {
-
 
120
		return milieu;
-
 
121
	}
-
 
122
 
-
 
123
	public HasClickHandlers getLienCommentaire() {
-
 
124
		return commentaire;
72
	}
125
	}