Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1337 Rev 1338
Line 204... Line 204...
204
		barreOutils.add(ajouterBouton);
204
		barreOutils.add(ajouterBouton);
Line 205... Line 205...
205
		
205
		
Line 206... Line 206...
206
		barreOutils.add(new Text(" ou "));
206
		barreOutils.add(new Text(" ou "));
207
		
-
 
Line 208... Line 207...
208
		creerComboBoxPersonnesSaisies();
207
		
Line 209... Line 208...
209
		//personnesSaisiesComboBox = recherchePersonnesCombo;;
208
		creerComboBoxPersonnesSaisies();
Line 1155... Line 1154...
1155
		List<Personne> auteurs = grille.getStore().getModels();
1154
		List<Personne> auteurs = grille.getStore().getModels();
Line 1156... Line 1155...
1156
		
1155
		
1157
		Iterator<Personne> itAuteurs = auteurs.iterator();
1156
		Iterator<Personne> itAuteurs = auteurs.iterator();
1158
		while (itAuteurs.hasNext())	{
1157
		while (itAuteurs.hasNext())	{
1159
			Personne personneCourante = itAuteurs.next();
1158
			Personne personneCourante = itAuteurs.next();
1160
			intituleAuteur += personneCourante.getNom().toUpperCase() + " " + personneCourante.getPrenom();
1159
			intituleAuteur += personneCourante.getNomComplet();
1161
			if (itAuteurs.hasNext())	{
1160
			if (itAuteurs.hasNext())	{
1162
				intituleAuteur+=", ";
1161
				intituleAuteur+=", ";
1163
			}
1162
			}
1164
		} 
1163
		}