Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1934 Rev 2050
Line 23... Line 23...
23
	Button boutonAjoutProposition, boutonAjoutCommentaire, boutonPlusDeDetails;
23
	Button boutonAjoutProposition, boutonAjoutCommentaire, boutonPlusDeDetails;
Line 24... Line 24...
24
 
24
 
25
	@UiField
25
	@UiField
Line 26... Line 26...
26
	Panel determinationsPanel, imagesPanel, metadonnees;
26
	Panel determinationsPanel, imagesPanel, metadonnees;
Line 27... Line 27...
27
	
27
	
28
	@UiField Label nomEspece;
28
	@UiField Label nomEspece, messageEvenements;
29
	
29
	
Line 76... Line 76...
76
	@Override
76
	@Override
77
	public void setNbCommentaires(String nbCommentaires) {
77
	public void setNbCommentaires(String nbCommentaires) {
78
		boutonPlusDeDetails.setText(boutonPlusDeDetails.getText()+" ("+nbCommentaires+")");
78
		boutonPlusDeDetails.setText(boutonPlusDeDetails.getText()+" ("+nbCommentaires+")");
79
	}
79
	}
Line -... Line 80...
-
 
80
 
-
 
81
	@Override
-
 
82
	public void afficherEvenementsObservation(String evenementsObs) {
-
 
83
		messageEvenements.setText(evenementsObs);
-
 
84
		messageEvenements.setVisible(true);
-
 
85
	}
-
 
86
 
-
 
87
	public void cacherEvenementsObservation() {
-
 
88
		messageEvenements.setVisible(false);
-
 
89
	}
-
 
90
 
-
 
91
	@Override
-
 
92
	public void mettreEnValeurEvenementsObs() {
-
 
93
		messageEvenements.addStyleName("evenementsNouveaux");
80
 
94
	}