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

boomerang.Context Maven / Gradle / Ivy

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

import boomerang.scene.Statement;

/**
 * A context is stored within the context graph. And must at least have a statement associated with
 * it. This will be used by the {@link ContextRequester} to retrieve more contexts upon need.
 *
 * @author "Johannes Spaeth"
 */
public interface Context {
  public Statement getStmt();

  public int hashCode();

  public boolean equals(Object obj);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy