// Decompiled by Jad v1.5.8f. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.kpdus.com/jad.html // Decompiler options: packimports(3) package org.jdbcpersistence.generated; import example.ExampleUserBeanImpl; import java.sql.ResultSet; import java.sql.SQLException; import java.util.List; import org.jdbcpersistence.JDBCResultSetReader; public final class ExampleUserBeanImplJDBCResultSetReader_SELECT___FROM_EXAMPLE_USERS implements JDBCResultSetReader { public ExampleUserBeanImplJDBCResultSetReader_SELECT___FROM_EXAMPLE_USERS() { } public List read(ResultSet resultset, List list) throws SQLException, RuntimeException { try { ExampleUserBeanImpl exampleuserbeanimpl; for(; resultset.next(); list.add(exampleuserbeanimpl)) { exampleuserbeanimpl = new ExampleUserBeanImpl(); exampleuserbeanimpl.setId(resultset.getString(1)); exampleuserbeanimpl.setFirstName(resultset.getString(2)); exampleuserbeanimpl.setLastName(resultset.getString(3)); exampleuserbeanimpl.setAge(resultset.getInt(4)); } } catch(SQLException sqlexception) { throw sqlexception; } catch(Throwable throwable) { RuntimeException runtimeexception = new RuntimeException(throwable); throw runtimeexception; } finally { } return list; } }