01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 1997-2006.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.query;
07:
08: public interface TupleQuery extends Query {
09:
10: public TupleQueryResult evaluate() throws QueryEvaluationException;
11:
12: public void evaluate(TupleQueryResultHandler handler)
13: throws QueryEvaluationException,
14: TupleQueryResultHandlerException;
15: }
|