org.protege.editor.owl.rdf.SparqlReasoner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sparql-query-plugin Show documentation
Show all versions of sparql-query-plugin Show documentation
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();
}