Package model.movie

Examples of model.movie.Decade


              "} ";
    ResultSet resultSet = OntologyQueryer.resultQuery(queryText);
    while(resultSet.hasNext()) {
      String uri = resultSet.next().get("decade").toString();
      if (uri.contains("http://h2mdb.no/") && !uri.contains("Decade"))
        decades.add(new Decade(uri, uri.replace("http://h2mdb.no/", "")));
    }
   
    Collections.sort(decades, new DecadeComparator());
    return decades;
  }
View Full Code Here

TOP

Related Classes of model.movie.Decade

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.