package esl.cuenet.algorithms.firstk.structs.soc;
import esl.cuenet.algorithms.firstk.structs.eventgraph.Entity;
import esl.datastructures.Location;
public class EntityRelations {
public EntityRelations(Entity entity) {
}
public void createRelation(Entity e1, Entity e2, String relationURI) {
}
public void getRelatedEntites(Entity entity) {
}
public void getRelatedEntites(Entity entity, Location location) {
}
}