Package net.fqsc.inscriptions.model.categories

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


      {
        map.put(line.getPlaque(), line);
      }
    }

    final CategorieParticipante catPart = this.categorieParticipanteController
        .getCategorieParticipante(this.saison, categorie);

    if (catPart.getPlaqueMin() != null && catPart.getPlaqueMax() != null)
    {
      for (int i = catPart.getPlaqueMin(); i <= catPart.getPlaqueMax(); i++)
      {
        if (!map.containsKey(new Integer(i).toString()))
        {
          map.put(new Integer(i).toString(), new PlaqueAttribueeLine(
              new Integer(i).toString()));
View Full Code Here

TOP

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

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.