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: import info.aduna.iteration.CloseableIteration;
09:
10: /**
11: * Super type of all query result types (TupleQueryResult, GraphQueryResult,
12: * etc.).
13: *
14: * @author Arjohn Kampman
15: */
16: public interface QueryResult<T> extends
17: CloseableIteration<T, QueryEvaluationException> {
18:
19: }
|