Package model.array

Examples of model.array.HistoryArray


  public Window() {
    super(TITLE);
    panelCount = -1;

    history = new HistoryArray();
    history.addCurrentChangedListener(this);
   
    searchField = new SearchField();
    forwardButton = new ForwardButton(history);
    backwardButton = new BackwardButton(history);
View Full Code Here


  @Override
  public void decadeSelected(String uri) {
    SearchableObjectArray results = new SearchableObjectArray();
   
    Window window = MainController.getInstance().getWindow();
    HistoryArray history = window.getHistory();
   
    String queryText =   "SELECT DISTINCT ?actor ?title WHERE { " +
                "?film rdf:type <" + uri + "> . " +
                "?film dbpedia-owl:starring ?actor . " +
                "?actor h2mdb:name ?title . " +
              "} ";
    ResultSet resultSet = OntologyQueryer.resultQuery(queryText);
    while(resultSet.hasNext()) {
      QuerySolution solution = resultSet.next();
      results.add(new Actor(solution.get("actor").toString(), solution.get("title").toString().replace("@en", "")));
    }
   
    Collections.sort(results, new SearchableComparator());
    history.add(new SearchResultView(window.getPanelCount(), new SearchController(), results));
  }
View Full Code Here

  @Override
  public void decadeSelected(String uri) {
    SearchableObjectArray results = new SearchableObjectArray();
   
    Window window = MainController.getInstance().getWindow();
    HistoryArray history = window.getHistory();
   
    String queryText =   "SELECT ?uri ?title WHERE { " +
                "?uri rdf:type <" + uri + "> . " +
                "?uri h2mdb:name ?title . " +
              "} ";
    ResultSet resultSet = OntologyQueryer.resultQuery(queryText);
    while(resultSet.hasNext()) {
      QuerySolution solution = resultSet.next();
      results.add(new Movie(solution.get("uri").toString(), solution.get("title").toString().replace("@en", "")));
    }
   
    Collections.sort(results, new SearchableComparator());
    history.add(new SearchResultView(window.getPanelCount(), new SearchController(), results));
  }
View Full Code Here

TOP

Related Classes of model.array.HistoryArray

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.