this.course = course;
}
@Override
protected void populateItem(final ListItem item) {
final Course course = (Course) item.getModelObject();
//Construction du lien sélectionner.
final Map map = new HashMap();
map.put( ConfirmationCopiePanel.TypeParameters.COURSE, this.course);
map.put( ConfirmationCopiePanel.TypeParameters.COURSEACOPIER, course);
item.add(HomePage.link("selection", ConfirmationCopiePanel.class, map));
//Autres propriétés
item.add(new Label("nomCourse", new PropertyModel(course, "nom")));
item.add(new Label("nomEvenement", new PropertyModel(course.getEvenement(), "nom")));
}