Subversion Repositories eFlore/Applications.del

Rev

Rev 471 | Rev 560 | 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.Label;
12
import com.google.gwt.user.client.ui.Widget;
13
 
14
public class MetadonneesVue extends Composite implements MetadonneesPresenteur.Vue {
15
	// Gestion d'UiBinder
16
	interface Binder extends UiBinder<Widget, MetadonneesVue> {
17
	}
552 benjamin 18
 
447 gduche 19
	private static Binder binder = GWT.create(Binder.class);
552 benjamin 20
 
21
	@UiField
22
	Hyperlink nomRetenu, famille, auteur, localite, motsClefs, numNomenclatural, nomCommun, lieuDit, commentaire, milieu;
23
	@UiField
24
	InlineLabel dateReleve, dateTransmission;
25
 
447 gduche 26
	public MetadonneesVue() {
27
		initWidget(binder.createAndBindUi(this));
28
	}
552 benjamin 29
 
447 gduche 30
	public HasText getNomRetenu() {
31
		return this.nomRetenu;
32
	}
552 benjamin 33
 
447 gduche 34
	public HasText getFamille() {
35
		return this.famille;
36
	}
552 benjamin 37
 
447 gduche 38
	public HasText getAuteur() {
39
		return this.auteur;
40
	}
552 benjamin 41
 
449 gduche 42
	public HasText getDateTransmission() {
43
		return this.dateTransmission;
447 gduche 44
	}
552 benjamin 45
 
449 gduche 46
	public HasText getDateReleve() {
47
		return this.dateReleve;
48
	}
552 benjamin 49
 
447 gduche 50
	public HasText getLocalite() {
51
		return this.localite;
52
	}
552 benjamin 53
 
447 gduche 54
	public HasText getMotsClefs() {
55
		return this.motsClefs;
56
	}
552 benjamin 57
 
447 gduche 58
	public HasText getNumNomenclatural() {
59
		return this.numNomenclatural;
60
	}
61
 
62
	public HasText getNomCommun() {
63
		return nomCommun;
64
	}
65
 
66
	public HasText getLieuDit() {
67
		return lieuDit;
68
	}
69
 
70
	public HasText getMilieu() {
71
		return milieu;
72
	}
73
 
74
	public HasText getCommentaire() {
75
		return commentaire;
76
	}
552 benjamin 77
 
78
	@Override
79
	public HasClickHandlers getLienNomRetenu() {
80
		return nomRetenu;
81
	}
447 gduche 82
 
552 benjamin 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;
125
	}
126
 
447 gduche 127
}