Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 669 Rev 690
Line 182... Line 182...
182
		}
182
		}
183
		return texteRecapitulatif;
183
		return texteRecapitulatif;
184
	}
184
	}
Line 185... Line 185...
185
	
185
	
186
	public void peupler(String chaineExistante) {
186
	public void peupler(String chaineExistante) {
187
		if (chaineExistante != null) {
187
		if ((chaineExistante != null)&&(!chaineExistante.trim().equals(""))) {
188
			String[] valeurs = chaineExistante.split(";;");
188
			String[] valeurs = chaineExistante.split(";;");
189
			for (int i = 0; i < valeurs.length; i++) {
189
			for (int i = 0; i < valeurs.length; i++) {
190
				ajouterValeur(valeurs[i]);
190
				ajouterValeur(valeurs[i]);
191
			}
191
			}