.getVille(), "'", "")));
row.createCell((short) 7).setCellValue(
personneInscrite.getVersion());
// --------- Information sur l'inscription -------
final Inscription inscription = line.getInscription();
final Club club = line.getClub();
final Categorie categorie = line.getCategorie();
if (club != null)
{
row.createCell((short) 8).setCellValue(
new HSSFRichTextString(StringUtils.replace(club
.getNomComplet(), "'", "")));
}
else
{
row.createCell((short) 8).setCellValue(
new HSSFRichTextString(StringUtils.replace(inscription
.getCommanditaire(), "'", "")));
}
try
{
final Integer plaqueInt = Integer.parseInt(inscription
.getNoPlaque());
row.createCell((short) 9).setCellValue(plaqueInt);
}
catch (final NumberFormatException e)
{
row.createCell((short) 9).setCellValue(
new HSSFRichTextString(inscription.getNoPlaque()));
}
if (line.getInfoSaison() != null)
{
row.createCell((short) 10).setCellValue(
line.getInfoSaison().getVersion());
}
row.createCell((short) 11).setCellValue(
new HSSFRichTextString(inscription.getCodePuce()));
row.createCell((short) 12).setCellValue(
new HSSFRichTextString(StringUtils.replace(categorie
.getCodeComplet(), "'", "")));
}