Package net.fqsc.inscriptions.model.categories

Examples of net.fqsc.inscriptions.model.categories.CategoriesParticipantes


    {
      for (final Iterator iter = this.utils.getSaisons().iterator(); iter
          .hasNext();)
      {
        final Saison saison = (Saison) iter.next();
        final CategoriesParticipantes categoriesParticipantes = saison
            .getCategoriesParticipantes();
        categoriesParticipantes.createCategorieParticipante(plaqueMin,
            plaqueMax, plaqueGeleMin, plaqueGeleMax, saison,
            categorie);

        this.outputErrors(categoriesParticipantes);
      }
View Full Code Here


   */
  public Saison(final IDomainModel domainModel)
  {
    super(domainModel);
    this.evenements = new Evenements(this);
    this.categoriesParticipantes = new CategoriesParticipantes(this);
    this.infosSaison = new InfosSaison(this);
    this.affiliationsClubs = new AffiliationsClubs(this);
  }
View Full Code Here

  public CategoriesParticipantes getCategoriesParticipantes(
      final Categorie categorie) throws ActionException,
      SelectionException
  {
    final CategoriesParticipantes categoriesParticipantes = new CategoriesParticipantes(
        categorie);

    for (final Iterator iter = this.iterator(); iter.hasNext();)
    {
      final Saison saison = (Saison) iter.next();
      final CategorieParticipante categorieParticipante = saison
          .getCategorieParticipante(categorie);
      if (categorieParticipante != null)
      {
        categoriesParticipantes.add(categorieParticipante);
      }
    }

    return categoriesParticipantes;
  }
View Full Code Here

TOP

Related Classes of net.fqsc.inscriptions.model.categories.CategoriesParticipantes

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.