Subversion Repositories eFlore/Applications.del

Rev

Rev 1566 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1566 Rev 1862
Line 35... Line 35...
35
 
35
 
36
	@UiField
36
	@UiField
Line 37... Line 37...
37
	HTMLPanel imageTable;
37
	HTMLPanel imageTable;
38
 
38
 
Line 39... Line 39...
39
	@UiField
39
	@UiField
40
	Button triParNbVotesAscendant, triParNbVotesDescendant, triParDateAscendant, triParDateDescendant, triParNbTagsAscendant, triParNbTagsDescendant, triParPointsAscendant, triParPointsDescendant;
40
	Button triParMoyenneArithmetiqueAscendant, triParMoyenneArithmetiqueDescendant, triParDateAscendant, triParDateDescendant, triParNbTagsAscendant, triParNbTagsDescendant, triParPointsAscendant, triParPointsDescendant;
Line 41... Line 41...
41
 
41
 
42
	@UiField
42
	@UiField
Line 43... Line 43...
43
	Label aucunResultat;
43
	Label aucunResultat;
44
	
44
	
45
	@UiField
45
	@UiField
Line 59... Line 59...
59
		imageTable.clear();
59
		imageTable.clear();
60
		panneauxImages.clear();
60
		panneauxImages.clear();
61
	}
61
	}
Line 62... Line 62...
62
 
62
 
63
	public void creerPanneauxObservations(int taille) {
-
 
64
 
63
	public void creerPanneauxObservations(int taille) {
65
		panneauxImages.clear();
64
		panneauxImages.clear();
66
		for (int i = 0; i < taille; i++) {
65
		for (int i = 0; i < taille; i++) {
67
			Panel imagePanel = new HTMLPanel("");
66
			Panel imagePanel = new HTMLPanel("");
68
			panneauxImages.add(imagePanel);
67
			panneauxImages.add(imagePanel);
Line 123... Line 122...
123
 
122
 
124
	public List<HasWidgets> getPanneauxImages() {
123
	public List<HasWidgets> getPanneauxImages() {
125
		return panneauxImages;
124
		return panneauxImages;
Line 126... Line 125...
126
	}
125
	}
127
 
126
 
128
	public Button getTriParNbVotesAscendant() {
127
	public Button getTriParMoyenneArithmetiqueAscendant() {
Line 129... Line 128...
129
		return triParNbVotesAscendant;
128
		return triParMoyenneArithmetiqueAscendant;
130
	}
129
	}
131
 
130
 
Line 132... Line 131...
132
	public Button getTriParNbVotesDescendant() {
131
	public Button getTriParMoyenneArithmetiqueDescendant() {
133
		return triParNbVotesDescendant;
132
		return triParMoyenneArithmetiqueDescendant;
134
	}
133
	}
Line 149... Line 148...
149
		return triParPointsDescendant;
148
		return triParPointsDescendant;
150
	}
149
	}
Line 151... Line 150...
151
	
150
	
152
 
151
 
153
	@Override
152
	@Override
154
	public Label getLabelVote() {
153
	public Label getLabelMoyenneArithmetique() {
Line 155... Line 154...
155
		return labelVote;
154
		return labelMoyenneArithmetique;
156
	}
155
	}
157
 
156
 
158
	@Override
157
	@Override
Line 159... Line 158...
159
	public void masquerVoteAscendant() {
158
	public void masquerMoyenneArithmetiqueAscendant() {
160
		triParNbVotesAscendant.setVisible(false);
159
		triParMoyenneArithmetiqueAscendant.setVisible(false);
161
	}
160
	}
162
	
161
	
Line 163... Line 162...
163
	@Override
162
	@Override
164
	public void masquerVoteDescendant() {
163
	public void masquerMoyenneArithmetiqueDescendant() {
165
		triParNbVotesDescendant.setVisible(false);
164
		triParMoyenneArithmetiqueDescendant.setVisible(false);
166
	}
165
	}
Line 167... Line 166...
167
	
166
	
168
	@Override
167
	@Override
169
	public void afficherVoteAscendant() {
168
	public void afficherMoyenneArithmetiqueAscendant() {
170
		triParNbVotesAscendant.setVisible(true);
169
		triParMoyenneArithmetiqueAscendant.setVisible(true);
Line 171... Line 170...
171
	}
170
	}
172
	
171
	
173
	@Override
172
	@Override