dnet-core/dnet-core-services/src/main/java/eu/dnetlib/enabling/resultset/ResultSetAware.java

17 lines
340 B
Java

package eu.dnetlib.enabling.resultset;
/**
* ResultSet listeners can add this interface in order to receive the ResultSet they are bound to.
*
* @author marko
*
*/
public interface ResultSetAware {
/**
* sets the resultset instance.
*
* @param resultSet the resultset instance
*/
void setResultSet(ResultSet resultSet);
}