*
* @throws Exception si une erreur survient
*/
private void lesVignes() throws Exception {
for (int i = 0; i < vignes.size(); i++) {
Vigne orig = (Vigne) vignes.get(i);
// Trouvons les caract�ristiques suivantes :
// Pays
// String ancien_pays = orig.getCountry_id();
// String pays_id = Finder.pays(ancien_pays, pays);
// if (pays_id != null) orig.setCountry_id(pays_id);
// //else /* Demander � l'utilisateur */ continue;
//
// // R�gion si pays non null
// String ancien_region = orig.getRegion_id();
// String region_id = Finder.region(ancien_region, ancien_pays, pays_id, regions);
// if (region_id != null) orig.setRegion_id(region_id);
// //else /* Demander � l'utilisateur */ continue;
//
// // Appellation si region non nulle
// String appellation_id = Finder.appellation(orig.getDenomination_id(), ancien_region, region_id, appellations);
// if (appellation_id != null) orig.setDenomination_id(appellation_id);
//else /* Demander � l'utilisateur */ continue;
orig.save();
}
}