// $Id: ComicsAwtDB.java 3489 2005-11-27 18:48:26Z coelho $ import java.sql.*; public class ComicsAwtDB extends ComicsDB { // CONSTRUCTOR public ComicsAwtDB(Connection dbc) throws SQLException { super(dbc); } // OVERWRITEN METHOD protected synchronized Object getSomething(String query) throws SQLException { // À compléter // - exécution de la "query" en utilisant "sta" // - construction et retour d'un objet "ChoiceId" } }