Package com.netflox.model

Examples of com.netflox.model.Film$Comparators


    for(String[] loc : locations){
      //loc = {idFilm, date}
      long dateLoc = Long.parseLong(loc[1]);
      //48*60*60*1000 : 48h en ms
      if((dateLoc + (long)(48*60*60*1000)) > date){
        Streaming s = new Streaming(new Film(loc[0]), dateLoc);
        l.add(s);
      }
    }
    return l;
  }
View Full Code Here

TOP

Related Classes of com.netflox.model.Film$Comparators

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.