## ============================================================================ ## Filename : FWJavaBeanResultSetHelperTemplate.vm ## Note(s) : This template is used to generate the ResultSetHelper interface ## used by the Java Bean DAO classes. ## ## Copyright (c) 2007-2008 ThinkUI Software Inc. All rights reserved. ## ============================================================================ ## ## **************************************************************************** ## The following variables are available in this template. For more ## information on any of the following variable, please refer to the user guide. ## **************************************************************************** ## $projectName ## $authorName ## $headerText ## $className ## $packageName ## $subPackageName ## $prjPkgName ## $prjClassPrefix ## $superClassName ## $date ## $codeGen ## #if ($packageName) package $packageName; #end #parse( "ClassHeaderInclude.vm" ) import java.sql.ResultSet; import java.sql.SQLException; /** * This interface is used by the SQLCommand.executeUpdate() to retrieve the * generated keys after an insert statement has been executed. */ public interface ResultSetHelper { /** * Retrieve values from the given result set. * @param rset * @throws SQLException */ public void retrieveResults(ResultSet rset) throws SQLException; }