01: /*
02: * LICENSE INFORMATION
03: * Copyright 2005-2007 by FZI (http://www.fzi.de).
04: * Licensed under a BSD license (http://www.opensource.org/licenses/bsd-license.php)
05: * <OWNER> = Max Völkel
06: * <ORGANIZATION> = FZI Forschungszentrum Informatik Karlsruhe, Karlsruhe, Germany
07: * <YEAR> = 2007
08: *
09: * Project information at http://semweb4j.org/rdf2go
10: */
11: package org.ontoware.rdf2go.model;
12:
13: import org.ontoware.aifbcommons.collection.ClosableIterable;
14:
15: /**
16: * The closable iterable/iterators hould be auto-close, i.e. when the last
17: * element is retrieved close() hast to be called automatically.
18: *
19: * @author voelkel
20: *
21: */
22: public interface QueryableModel extends ClosableIterable<Statement>,
23: Sparqlable, FindableModel {
24:
25: }
|