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

org.protege.editor.owl.rdf.SparqlReasoner Maven / Gradle / Ivy

Go to download

Plug-in for the Protege Desktop ontology editor that provides support for writing and executing SPARQL queries.

The newest version!
package org.protege.editor.owl.rdf;

public interface SparqlReasoner {
	
	void precalculate() throws SparqlReasonerException;
	
	String getSampleQuery();
	
	SparqlResultSet executeQuery(String query) throws SparqlReasonerException;
	
	void dispose();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy