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.rio;
07:
08: /**
09: * A RDFParserFactory returns {@link RDFParser}s for a specific RDF format.
10: *
11: * @author Arjohn Kampman
12: */
13: public interface RDFParserFactory {
14:
15: /**
16: * Returns the RDF format for this factory.
17: */
18: public RDFFormat getRDFFormat();
19:
20: /**
21: * Returns a RDFParser instance.
22: */
23: public RDFParser getParser();
24: }
|