Package data.theatre

Examples of data.theatre.Zone


   
    ft.setConnection(gc.getConnection());
    fr.setConnection(gc.getConnection());
   
    // creation d'une zone inoccupee
    Zone z = ft.parametrerZone(idZone);
   
    /* Deletion des places deja reservees de la zone.
     * On parcourt toutes les reservations concernant cette Zone et seance
     * Pour chaque reservation on enleve les Fauteuils occupes par celle-ci
     * dans la Zone resultat.
View Full Code Here


   * @param z
   * @return
   * @throws SQLException
   */
  public Zone parametrerZone(String idZone) throws SQLException{
    Zone zone = new Zone(idZone);
    pSelectRangees.clearParameters();
    pSelectRangees.setString(1, idZone);
    ResultSet rsRangees = pSelectRangees.executeQuery();
    // Pour les rangées
    while(rsRangees.next()){
      String idRangee = rsRangees.getString(1);
      Rangee r = new Rangee(idRangee);
      int nbPlaces = rsRangees.getInt(2);
      for(int i=1;i<=nbPlaces;i++){         
        r.addPlace(new Place(i));
      }
     
      // On ajout cette rangée à la zone
      zone.addRangee(r);
    }
    return zone;
  }
View Full Code Here

    // On paramètre les objets zones avant de les ajouter
    while(rsZones.next()){
      String idZone = rsZones.getString(1);
     
      // On paramétre cette zone (ajout des rangées ...)
      Zone z = this.parametrerZone(idZone);     
      // On ajoute cette zone au théatre
      theatre.addZone(z);
    }
   
   
View Full Code Here

      String adresse = rsAbonne.getString(4);
      int nbPlaces = rsAbonne.getInt(5);
      Date debutVal = rsAbonne.getDate(6);
      Date finVal = rsAbonne.getDate(7);     
      String idZone = rsAbonne.getString(8);
      Zone z = ft.parametrerZone(idZone);     
     
      a = new Abonne(idAbonne,nom,prenom,adresse,debutVal,finVal,nbPlaces,z);
    }
    return a;
  }
View Full Code Here

    }
  }
 
 
  private void reInitZ3(){
    z3 = new Zone("BalconDeTest");
   
    for(int j = 1; j <= 4; j++){
      Rangee r = new Rangee("Rg"+(j));
      switch (j) {
      case 1:
View Full Code Here

    FabTheatre ft = FabTheatre.getInstance();
   
    try{
      ft.setConnection(gc.getConnection());
      //On récupèe la zone associée à cette id de zone
      Zone z = new OutilsTheatre().getImageZonePlacesLibres(idZone, idSeance);
      return proposeFauteuils(z,nb);
    }catch(SQLException se){
      se.printStackTrace();
    }
    return null;
View Full Code Here

   * @throws java.lang.Exception
   */
 
  protected void setUp() throws Exception {
    System.out.println("SETUP DEBUT");
    z = new Zone("Premiere");
   

    /*
     * remplissage de la zone Z Premiere
     */
 
View Full Code Here

TOP

Related Classes of data.theatre.Zone

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.