01: package com.vividsolutions.jump.datastore.jdbc; 02: 03: import java.sql.*; 04: 05: /** 06: * A block of code to execute on a result set. 07: * 08: * @author Martin Davis 09: * @version 1.0 10: */ 11: 12: public interface ResultSetBlock { 13: void yield(ResultSet resultSet) throws Exception; 14: }