Subversion Repositories eFlore/Applications.del

Rev

Rev 552 | Rev 564 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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