Package net.fqsc.inscriptions.model.evenements

Examples of net.fqsc.inscriptions.model.evenements.Saisons


   */
  public void updateSaison(final Saison saison)
  {
    try
    {
      final Saisons saisons = (Saisons) this.domainModel
          .getEntry("Saisons");

      final Saison beforeSaison = (Saison) saisons.retrieveByOid(saison
          .getOid());
      if (!saisons.update(beforeSaison, saison))
      {
        throw new ValidationException(
            "La validation de dmLite à échoué. ");
      }
    }
View Full Code Here


  }
 
  private void createComponent()
  { 
    final InscriptionsApp app = (InscriptionsApp) this.getApplication();
    final Saisons saisons = (Saisons) app.getEntry("Saisons");
   
    final ChoixSaisonListView listeSaisons =  new ChoixSaisonListView("saisonListView", saisons, this.course);
    this.add(listeSaisons);
     
    //Construction du lien retour
View Full Code Here

TOP

Related Classes of net.fqsc.inscriptions.model.evenements.Saisons

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.