public CloseableIteration<? extends BindingSet, QueryEvaluationException> evaluate(final String query)
throws RippleException {
ensureOpen();
SPARQLParser parser = new SPARQLParser();
boolean useInference = false;
// FIXME
String baseURI = "http://example.org/bogusBaseURI/";
ParsedQuery pq;
try {
pq = parser.parseQuery(query, baseURI);
} catch (MalformedQueryException e) {
throw new RippleException(e);
}
MapBindingSet bindings = new MapBindingSet();