All Downloads are FREE. Search and download functionalities are using the official Maven repository.

boomerang.results.QueryResults Maven / Gradle / Ivy

There is a newer version: 3.2.2
Show newest version
package boomerang.results;

import boomerang.Query;
import boomerang.scene.Method;
import java.util.Collection;
import java.util.Set;

public class QueryResults {
  private Query query;
  private final Collection visitedMethods;
  private final Collection affectedLocations;
  private final boolean timedout;

  public QueryResults(
      Query query, Set npes, Set visMethod, boolean timedout) {
    this.query = query;
    this.visitedMethods = visMethod;
    this.affectedLocations = npes;
    this.timedout = timedout;
  }

  public Query getQuery() {
    return query;
  }

  public Collection getVisitedMethods() {
    return visitedMethods;
  }

  public Collection getAffectedLocations() {
    return affectedLocations;
  }

  public boolean isTimedout() {
    return timedout;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy