Package org.xrace.model.evenements

Examples of org.xrace.model.evenements.Evenement


  protected void onSetUpInTransaction() throws Exception
  {
    super.onSetUpInTransaction();

    Saison saison = getSaisonService().findByAnnee(2007).get(0);
    Evenement evenement1 = getEvenementService().getEvenementParNo(saison,
        1);
    Course course1 = getCourseService().getCourseParNom(evenement1,
        "Cross-Country");
    Evenement evenement2 = getEvenementService().getEvenementParNo(saison,
        2);
    Course course2 = getCourseService().getCourseParNom(evenement2,
        "Cross-Country");

    Categorie categorie1 = getCategorieService().findByCode("XJS", "H",
View Full Code Here


  protected void onSetUpInTransaction() throws Exception
  {
    super.onSetUpInTransaction();

    Saison saison = getSaisonService().findByAnnee(2007).get(0);
    Evenement evenement4 = getEvenementService().getEvenementParNo(saison,
        4);
    courseXC4 = getCourseService().getCourseParNom(evenement4,
        "Cross-Country");
    courseRVM = getCourseService().getCourseParNom(evenement4,
        "Raid Vélo Mag");
    Evenement evenement9 = getEvenementService().getEvenementParNo(saison,
        9);
    courseXC9 = getCourseService().getCourseParNom(evenement9,
        "Cross-Country");
    courseDH9A = getCourseService().getCourseParNom(evenement9, "Downhill");
    courseDH9B = getCourseService().getCourseParNom(evenement9,
View Full Code Here

    for (final Map.Entry<EvenementCategoriePersonneEntry, List<Inscription>> entry : evenementNbCourses
        .entrySet())
    {
      final EvenementCategoriePersonneEntry evtCarPersEntry = entry
          .getKey();
      final Evenement evenement = evtCarPersEntry.getEvenement();
      final Categorie categorie = evtCarPersEntry.getCategorie();
      final List<Inscription> inscriptions = entry.getValue();
      final Integer nbCourses = inscriptions.size();

      final RabaisEvenement rabaisEvenement = rabaisEvenementService
View Full Code Here

    for (final CartItem item : items)
    {
      if (item instanceof CartItemInscription)
      {
        final CartItemInscription cartItemInscription = (CartItemInscription) item;
        final Evenement evenement = cartItemInscription
            .getTarification().getCourse().getEvenement();
        final Personne personne = cartItemInscription.getPersonne();
        final Categorie categorie = cartItemInscription
            .getInscription().getCategorie();
        final EvenementCategoriePersonneEntry entry = new EvenementCategoriePersonneEntry(
View Full Code Here

    ProcessusInscription processusInscription = gestionProcessusInscription
        .getProcessusInscription();

    Saison saison = null;
    Evenement evenement = null;
    Course course = null;
    if (processusInscription != null)
    {
      saison = gestionProcessusInscription.getProcessusInscription()
          .getSaisonSelectionnee();
View Full Code Here

  @Override
  protected void populateItem(final ListItem item)
  {

    final Evenement evenement = (Evenement) item.getModelObject();

    item.add(new Label("nom", new PropertyModel(evenement, "nom")));
    item.add(new Label("endroit", new PropertyModel(evenement, "endroit")));

    PageParameters params = new PageParameters();
    params.add("evenement", evenement.getId().toString());

    BookmarkablePageLink link;
    link = new BookmarkablePageLink("selection", CoursesPage.class, params);

    item.add(link);
View Full Code Here

  @Override
  protected void populateItem(final ListItem item)
  {

    final Evenement evenement = (Evenement) item.getModelObject();

    item.add(new Label("nom", new PropertyModel(evenement, "nom")));
    item.add(new Label("endroit", new PropertyModel(evenement, "endroit")));

    final PopupSettings popup = new PopupSettings(PopupSettings.SCROLLBARS);
View Full Code Here

     * Si un évènement est reçu en paramètre
     *
     */
    else if (etape == Etapes.Evenement && obj instanceof Evenement)
    {
      Evenement evenement = (Evenement) obj;
      /*On sauvegarde dans la getSession() l'évènement sélectionné*/
      getSession().getProcessusInscription().setEvenementSelectionnee(
          evenement);

      /*On obtient la liste des courses à associées à l'évènement*/
 
View Full Code Here

    add(new FeedbackPanel("feedback"));

    try
    {
      Long id = Long.parseLong(evenementId);
      Evenement evenement = evenementService.find(id);

      if (evenement == null)
      {
        error(getLocalizer().getString("invalidRaceNumber", this));
        addEmptyPanels();
        return;
      }

      List<Course> items = courseService.getCourseParEvenement(evenement);
      add(new ContextPanel("contextPanel", evenement.getSaison(),
          evenement, null));
      add(new CoursesPanel("coursePanel", items));
    }
    catch (NumberFormatException e)
    {
View Full Code Here

{

  public void testDelete()
  {
    Saison saison = getSaisonService().findByAnnee(2007).iterator().next();
    Evenement evenement = getEvenementService()
        .getEvenementParNo(saison, 1);
    Course course = getCourseService().getCourseParNom(evenement,
        "Cross-Country");
    CourseEnsemblePuces cep = course.getCourseEnsemblePuces().iterator()
        .next();
View Full Code Here

TOP

Related Classes of org.xrace.model.evenements.Evenement

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.