01: package org.ontoware.rdfreactor.runtime;
02:
03: import java.util.List;
04:
05: import org.ontoware.aifbcommons.collection.ClosableIterable;
06:
07: public interface OOQueryResultTable extends
08: ClosableIterable<OOQueryRow> {
09:
10: /**
11: * Return the set of all variable names useed in the query.
12: *
13: * @return
14: */
15: List<String> getVariables();
16:
17: }
|