"Le maximum des plaques gelées doit être plus petit "
+ "que le maximum des plaques attribuées. ");
}
}
CategorieParticipante before = null;
boolean update = true;
CategorieParticipante categorieParticipante = this
.getCategorieParticipante(saison, categorie);
if (categorieParticipante == null)
{
categorieParticipante = new CategorieParticipante(saison, categorie);
update = false;
}
else
{
before = categorieParticipante;
categorieParticipante = (CategorieParticipante) categorieParticipante
.copy();
}
categorieParticipante.setPlaqueMin(plaqueMin);
categorieParticipante.setPlaqueMax(plaqueMax);
categorieParticipante.setPlaqueGeleMin(plaqueGeleMin);
categorieParticipante.setPlaqueGeleMax(plaqueGeleMax);
boolean result;
try
{