/** * Supprimer une liste de participants * * @param nomParticipants noms des participants */ public void removeParticipants(ArrayList<String> nomParticipants) { try { FrontModel.get().getFrontModelParticipants().removeParticipants(nomParticipants); } catch (ContestOrgWarningException e) { ViewHelper.derror(ContestOrg.get().getFenetrePrincipale(), e.getMessage()); } catch (ContestOrgErrorException e) { ContestOrg.get().erreur("Erreur lors de la modification de plusieurs participants", e); } }
/** * Supprimer un participant * * @param nomParticipant nom du participant */ public void removeParticipant(String nomParticipant) { try { FrontModel.get().getFrontModelParticipants().removeParticipant(nomParticipant); } catch (ContestOrgWarningException e) { ViewHelper.derror(ContestOrg.get().getFenetrePrincipale(), e.getMessage()); } catch (ContestOrgErrorException e) { ContestOrg.get().erreur("Erreur lors de la modification d'un participant", e); } }