Examples of NtpPanel


Examples of gui.vues.NtpPanel

      this.displayPreviousScreen(2);
     
    }else if(o == arret){
      this.finishCase();
    }else if(o == ok){     
      NtpPanel next = new ListePersonnes(p,a,res,rep,owner,this);
      this.displayScreen(next);     
    }
  }
View Full Code Here

Examples of gui.vues.NtpPanel

      Iterator it = personnes.iterator();
      while(it.hasNext()){       
        res.addPersonne((Personne)it.next());
      }     
     
      NtpPanel next = new Recapitulatif(p, a, res, rep, owner,this);
      this.displayScreen(next);

     
    }
View Full Code Here

Examples of gui.vues.NtpPanel

      }
      Abonne abonne = existe(idAbonne);
      // Si l'objet est non nul
      if (abonne!=null){
       
        NtpPanel next = new InfosAbonne(abonne, p,cdm.getDate(), owner,this);
        // Affichage de l'écran suivant
        this.displayScreen(next);       
      }
    }
View Full Code Here

Examples of gui.vues.NtpPanel

        //System.out.println(p);
       
        //Si période abonnée, on affiche l'écran abonnée
        boolean periodeAbonne = ((Boolean)table.getValueAt(table.getSelectedRow(),3)).booleanValue();
       
        NtpPanel next = null;
        if(periodeAbonne){
          next = new AbonnePanel(/*(String)*/ p,cdm,owner,this);         
        }else{
          //On créer l'objet réservation
          Reservation res = new Reservation();
View Full Code Here

Examples of gui.vues.NtpPanel

      res.setAbonne(a);
      res.setIdSeance(rep.getIdSeance());
      res.setIdZone((String) cb.getSelectedItem());
      res.setNbPersonnes(nbPlacesDemandees);

      NtpPanel next = new InfosAttribution(p, a, res, rep, owner, this);
      this.displayScreen(next);

    }
  }
View Full Code Here

Examples of gui.vues.NtpPanel

      // Si la réservation existe bel et bien
     
      if(res != null){
        //On efface l'id saisi
        clear();
        NtpPanel info = new InfoReservation(owner,cdm,annulation,res,this);
        this.displayScreen(info);
      }
     
    }
View Full Code Here

Examples of gui.vues.NtpPanel

    Object o = e.getSource();
    if(o == non){     
      this.finishCase();
    }else if(o == ok){
     
        NtpPanel next = new FinReservation(p,a,res,rep,owner,this);
        this.displayScreen(next);
    }   
  }
View Full Code Here

Examples of gui.vues.NtpPanel

      }else{
        // On affiche le nom de la pièce
        Object value = table.getValueAt(selectedRow, 0);
        Representation rep = (Representation)value;
        //System.out.println(value);
        NtpPanel next = new SaisieInformations(p,a,res,rep,owner,this);
        this.displayScreen(next);
       
       
      }
    }
View Full Code Here

Examples of gui.vues.NtpPanel

      // Si la réservation existe bel et bien
     
      if(res != null){
        //On efface l'id saisi
        clear();
        NtpPanel info = new InfoReservation(owner,cdm,annulation,res,this);
        this.displayScreen(info);
      }
     
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.