}
row = sheet.createRow((short) ++i);
// --------- Informations sur la personne inscrite -------
final Personne personneInscrite = line.getPersonneInscrite();
row.createCell((short) 0).setCellValue(personneInscrite.getId());
row.createCell((short) 1).setCellValue(
new HSSFRichTextString(personneInscrite.getNom()));
row.createCell((short) 2).setCellValue(
new HSSFRichTextString(personneInscrite.getPrenom()));
row.createCell((short) 3).setCellValue(
new HSSFRichTextString(personneInscrite.getCodeUCI()));
HSSFUtils.createDateCell(wb, row, 4, personneInscrite
.getDateNaissance());
row.createCell((short) 5).setCellValue(
new HSSFRichTextString(personneInscrite.getSexe()));
row.createCell((short) 6).setCellValue(
new HSSFRichTextString(personneInscrite.getAllergies()));
row.createCell((short) 7).setCellValue(
new HSSFRichTextString(personneInscrite
.getEmergencyNumber()));
row.createCell((short) 8).setCellValue(
new HSSFRichTextString(personneInscrite
.getEmergencyContact()));
// --------- Information sur l'inscription -------
final Inscription inscription = line.getInscription();
final Club club = line.getClub();