Subversion Repositories eFlore/Applications.coel

Rev

Rev 1415 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
257 gduche 1
package org.tela_botanica.client.util;
2
 
260 gduche 3
 
257 gduche 4
import java.util.Iterator;
5
import java.util.LinkedList;
6
 
7
public class UtilTruk {
8
 
9
	/**
10
	 * Traite une liste récupéré de truk et renvoie une chaîne de caractère formatée
11
	 *
12
	 * @param la liste truk
13
	 * @param le séparateur pour chaque valeur
14
	 * */
15
	public static String traiterTrukListe(LinkedList<String> listTruk, String separateur)	{
16
 
17
		String listeRetour = "";
18
 
19
		Iterator<String> it = listTruk.iterator();
20
		while (it.hasNext())	{
21
 
22
			String valeurCourante = it.next();
23
			listeRetour += valeurCourante;
24
			if (it.hasNext())	{
25
				listeRetour += separateur;
26
			}
27
		}
28
 
29
		return listeRetour;
30
	}
31
 
260 gduche 32
 
257 gduche 33
 
34
}