Examples of filmLoue()


Examples of com.netflox.form.GestionCompteClient.filmLoue()

    FilmsManager films = new FilmsManager(inPath);
   
    GestionCompteClient gcc = new GestionCompteClient(user);
    //récupération film loué
    ArrayList<String[]> filmLoue = new ArrayList<String[]>();
    ArrayList<Streaming> stream = gcc.filmLoue();
    for(Streaming s : stream){
      String titre = films.getFilm(s.getFilm().getId()).getTitre();
      String[] t = {titre , Long.toString(s.getDateFin()) , Long.toString(s.tempsRestantH()) , Long.toString(s.tempsRestantM()) };
      filmLoue.add(t);
    }
View Full Code Here

Examples of com.netflox.form.GestionCompteClient.filmLoue()

    FilmsManager films = new FilmsManager(inPath);
   
    GestionCompteClient gcc = new GestionCompteClient(user);
    //récupération film loué
    ArrayList<String[]> filmLoue = new ArrayList<String[]>();
    ArrayList<Streaming> stream = gcc.filmLoue();
    for(Streaming s : stream){
      String titre = films.getFilm(s.getFilm().getId()).getTitre();
      String[] t = {titre , Long.toString(s.tempsRestantH()) , Long.toString(s.tempsRestantM()) };
      filmLoue.add(t);
    }
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.