01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 2007.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.query.resultio;
07:
08: /**
09: * Returns {@link BooleanQueryResultParser}s for a specific boolean query
10: * result format.
11: *
12: * @author Arjohn Kampman
13: */
14: public interface BooleanQueryResultParserFactory {
15:
16: /**
17: * Returns the boolean query result format for this factory.
18: */
19: public BooleanQueryResultFormat getBooleanQueryResultFormat();
20:
21: /**
22: * Returns a BooleanQueryResultParser instance.
23: */
24: public BooleanQueryResultParser getParser();
25: }
|