Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 666 Rev 669
Line 180... Line 180...
180
			texteRecapitulatif = champRecapitulatif.getValue();
180
			texteRecapitulatif = champRecapitulatif.getValue();
181
			texteRecapitulatif = texteRecapitulatif.replaceAll("(.*);;$", "$1");
181
			texteRecapitulatif = texteRecapitulatif.replaceAll("(.*);;$", "$1");
182
		}
182
		}
183
		return texteRecapitulatif;
183
		return texteRecapitulatif;
184
	}
184
	}
-
 
185
	
-
 
186
	public void peupler(String chaineExistante) {
-
 
187
		if (chaineExistante != null) {
-
 
188
			String[] valeurs = chaineExistante.split(";;");
-
 
189
			for (int i = 0; i < valeurs.length; i++) {
-
 
190
				ajouterValeur(valeurs[i]);
-
 
191
			}
-
 
192
		}
-
 
193
	}
185
}
194
}