*/
public Rangee getConsecutiveDsZone(Zone z, int nb)
throws NombreTotalPlacesInsuffisantException{
if(nb > z.getNbFauteuils())
throw new NombreTotalPlacesInsuffisantException("Nombre total de places dans la " +
"Zone est insuffisant pour rechercher "+nb+" places!");
for(Iterator it = z.getLesRangees().iterator(); it.hasNext();){
Rangee r = (Rangee)it.next();