Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1005 Rev 1026
Line 18... Line 18...
18
	private static MyUiBinder uiBinder = GWT.create(MyUiBinder.class);
18
	private static MyUiBinder uiBinder = GWT.create(MyUiBinder.class);
19
	private InfoBulleAnim animerVotePrisEnCompte;
19
	private InfoBulleAnim animerVotePrisEnCompte;
20
	private InfoBulleAnim animerVoteModifie;
20
	private InfoBulleAnim animerVoteModifie;
Line 21... Line 21...
21
 
21
 
22
	@UiField
22
	@UiField
23
	Label nomTaxon;
23
	Label nomTaxon, pourcentage;
24
	@UiField
24
	@UiField
25
	Panel barreOui, barreNon, votePrisEnCompte, voteModifie;
25
	Panel barreOui, barreNon, votePrisEnCompte, voteModifie;
26
	@UiField
26
	@UiField
Line 113... Line 113...
113
 
113
 
114
	@Override
114
	@Override
115
	public void toggleNomEspece() {
115
	public void toggleNomEspece() {
116
		nomTaxon.setVisible(!nomTaxon.isVisible());
116
		nomTaxon.setVisible(!nomTaxon.isVisible());
-
 
117
	}
-
 
118
	
-
 
119
	@Override
-
 
120
	public void setPourcentage(int pourcentage) {
-
 
121
		this.pourcentage.setText(String.valueOf(pourcentage) + "%");
117
	}
122
	}