01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 1997-2007.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.query.resultio;
07:
08: import org.openrdf.query.TupleQueryResultHandler;
09:
10: /**
11: * The interface of objects that writer query results in a specific query result
12: * format.
13: */
14: public interface TupleQueryResultWriter extends TupleQueryResultHandler {
15:
16: /**
17: * Gets the query result format that this writer uses.
18: */
19: public TupleQueryResultFormat getTupleQueryResultFormat();
20: }
|