Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1196 Rev 1203
Line 51... Line 51...
51
	Label aucunResultat;
51
	Label aucunResultat;
Line 52... Line 52...
52
	
52
	
53
	@UiField
53
	@UiField
Line 54... Line 54...
54
	Label labelVote, labelDate, labelTag;
54
	Label labelVote, labelDate, labelTag;
55
	
-
 
56
	@UiField
55
	
57
	ListBox listeProtocoles;
56
	
58
	// Constructeur
57
	// Constructeur
59
	public ResultatPictofloraVue() {
58
	public ResultatPictofloraVue() {
Line 148... Line 147...
148
 
147
 
149
	public Button getTriParDateDescendant() {
148
	public Button getTriParDateDescendant() {
150
		return triParDateDescendant;
149
		return triParDateDescendant;
Line 151... Line -...
151
	}
-
 
152
	
-
 
153
	public void setListeProtocoles(ListBox listeProtocoles) {
-
 
154
		this.listeProtocoles = listeProtocoles;
-
 
155
	}
-
 
156
	
-
 
157
	public HasChangeHandlers getListeProtocoles() {
-
 
158
		return listeProtocoles;
-
 
159
	}
-
 
160
	
-
 
161
	public void ajouterProtocole(String NomProtocole, String idProtocole) {
-
 
162
		listeProtocoles.addItem(NomProtocole, idProtocole);
-
 
163
	}
-
 
164
 
-
 
165
	public void selectionnerProtocole(int index) {
-
 
166
		listeProtocoles.setSelectedIndex(index);
-
 
167
	}
-
 
168
	
-
 
169
	@Override
-
 
170
	public String getNomProtocoleSelectionne() {
-
 
171
		return listeProtocoles.getItemText((listeProtocoles.getSelectedIndex()));
-
 
172
	}
-
 
173
 
-
 
174
	@Override
-
 
175
	public int getIdProtocoleSelectionne() {
-
 
Line 176... Line 150...
176
		return Integer.parseInt(listeProtocoles.getValue((listeProtocoles.getSelectedIndex())));
150
	}
177
	}
151
	
178
 
152
 
179
	@Override
153
	@Override
Line 260... Line 234...
260
	@Override
234
	@Override
261
	public void masquerTagDescendant() {
235
	public void masquerTagDescendant() {
262
		triParNbTagsDescendant.setVisible(false);
236
		triParNbTagsDescendant.setVisible(false);
263
	}
237
	}
Line 264... Line -...
264
 
-
 
265
	@Override
-
 
266
	public void ajouterProtocoles(List<Protocole> protocoles) {
-
 
267
		SelectElement selectElement = SelectElement.as(listeProtocoles.getElement());
-
 
268
		NodeList<OptionElement> options = selectElement.getOptions();
-
 
269
	    for (int i = 0; i < protocoles.size(); i++) {
-
 
270
	    	listeProtocoles.addItem(protocoles.get(i).getNom(), protocoles.get(i).getId()+"");
-
 
271
	        options.getItem(i).setTitle(protocoles.get(i).getDescription());
-
 
272
	    }
-
 
273
	}
-
 
274
 
-
 
275
	@Override
-
 
276
	public void mettreAJourDescriptionProtocoleCourant(
-
 
277
			Protocole protocoleCourant) {
-
 
278
		listeProtocoles.setTitle(protocoleCourant.getDescription());
-
 
279
	}
238