}
@Override
protected void populateItem(final ListItem item)
{
final Categorie categorie = (Categorie) item.getModelObject();
item.add(new Label("codeCategorie", categorie.getCodeCategorie()));
item.add(new Label("nom", categorie.getNom()));
item.add(new Label("ageMin", categorie.getAgeMin().toString()));
item.add(new Label("ageMax", categorie.getAgeMax().toString()));
item.add(new Label("niveau", categorie.getNiveau()));
item.add(new Label("sexe", categorie.getSexe()));
final Map<TypeParameters, Object> hashMap = new HashMap<TypeParameters, Object>();
final CategoriePanel.TypeParameters parameters = CategoriePanel.TypeParameters.CATEGORIE;
hashMap.put(parameters, categorie);
item.add(HomePage.link("modifier", CategoriePanel.class, hashMap));