Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1108 Rev 1117
Line 17... Line 17...
17
import com.google.gwt.user.client.ui.HTMLPanel;
17
import com.google.gwt.user.client.ui.HTMLPanel;
18
import com.google.gwt.user.client.ui.HasWidgets;
18
import com.google.gwt.user.client.ui.HasWidgets;
19
import com.google.gwt.user.client.ui.Hyperlink;
19
import com.google.gwt.user.client.ui.Hyperlink;
20
import com.google.gwt.user.client.ui.IsWidget;
20
import com.google.gwt.user.client.ui.IsWidget;
21
import com.google.gwt.user.client.ui.Label;
21
import com.google.gwt.user.client.ui.Label;
-
 
22
import com.google.gwt.user.client.ui.Panel;
22
import com.google.gwt.user.client.ui.Widget;
23
import com.google.gwt.user.client.ui.Widget;
Line 23... Line 24...
23
 
24
 
Line 24... Line 25...
24
public class ForumInterventionVue extends Composite implements Vue {
25
public class ForumInterventionVue extends Composite implements Vue {
Line 40... Line 41...
40
	
41
	
41
	@UiField
42
	@UiField
Line 42... Line 43...
42
	FocusPanel conteneurLienSuppression;
43
	FocusPanel conteneurLienSuppression;
43
	
44
	
-
 
45
	@UiField
-
 
46
	HTML supprimer, nbVotesHtml;
-
 
47
	
-
 
48
	@UiField
Line 44... Line 49...
44
	@UiField
49
	FocusPanel conteneurPanneauVotes;
45
	HTML supprimer;
50
	
46
	
51
	
Line 137... Line 142...
137
	
142
	
138
	public void cacherDeterminationProposee() {
143
	public void cacherDeterminationProposee() {
139
		labelDeterminationProposee.setVisible(false);
144
		labelDeterminationProposee.setVisible(false);
Line -... Line 145...
-
 
145
	}
-
 
146
 
-
 
147
	@Override
-
 
148
	public void ajouterLienVotes() {
-
 
149
		conteneurPanneauVotes.addStyleName("nombreVotes");
-
 
150
	}
-
 
151
	
-
 
152
	public void masquerLienVotes() {
-
 
153
		conteneurPanneauVotes.removeStyleName("nombreVotes");
-
 
154
		nbVotesHtml.setVisible(false);
-
 
155
	}
-
 
156
 
-
 
157
	@Override
-
 
158
	public void setNbVotes(int votes) {
-
 
159
		nbVotesHtml.setText(String.valueOf(votes));
-
 
160
	}
-
 
161
	
-
 
162
	public HasClickHandlers getZoneNbVotes() {
-
 
163
		return this.conteneurPanneauVotes;
140
	}
164
	}