01: package org.ontoware.rdfreactor.runtime;
02:
03: /**
04: * object-oriented query-row
05: * @author voelkel
06: */
07: public interface OOQueryRow {
08:
09: /**
10: * @param varname
11: * @return object as the instance of the class according to mapping given in query
12: */
13: public Object getValue(String varname);
14:
15: }
|