Subversion Repositories eFlore/Applications.del

Rev

Rev 552 | Rev 564 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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