Subversion Repositories eFlore/Applications.del

Rev

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

Rev 447 Rev 449
Line 14... Line 14...
14
	interface Binder extends UiBinder<Widget, MetadonneesVue> {
14
	interface Binder extends UiBinder<Widget, MetadonneesVue> {
15
	}
15
	}
Line 16... Line 16...
16
	
16
	
Line 17... Line 17...
17
	private static Binder binder = GWT.create(Binder.class);
17
	private static Binder binder = GWT.create(Binder.class);
Line 18... Line 18...
18
	
18
	
19
	@UiField Label nomRetenu, famille, auteur, date, localite, motsClefs, numNomenclatural, nomCommun, lieuDit, commentaire, milieu;
19
	@UiField Label nomRetenu, famille, auteur, dateTransmission, dateReleve, localite, motsClefs, numNomenclatural, nomCommun, lieuDit, commentaire, milieu;
20
 
20
 
Line 32... Line 32...
32
	
32
	
33
	public HasText getAuteur() {
33
	public HasText getAuteur() {
34
		return this.auteur;
34
		return this.auteur;
Line -... Line 35...
-
 
35
	}
-
 
36
	
-
 
37
	public HasText getDateTransmission() {
-
 
38
		return this.dateTransmission;
35
	}
39
	}
36
	
40
	
37
	public HasText getDate() {
41
	public HasText getDateReleve() {
Line 38... Line 42...
38
		return this.date;
42
		return this.dateReleve;
39
	}
43
	}
40
	
44