- Timestamp:
- 02/27/10 20:02:04 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/org.bridgedb.rdb.construct/src/org/bridgedb/rdb/construct/GdbConstruct.java
r317 r320 32 32 * @return 1 if addition was successful, 0 otherwise. 33 33 */ 34 public int addGene(Xref ref , String bpText);34 public int addGene(Xref ref); 35 35 36 36 /** … … 67 67 /** 68 68 * Excecutes several SQL statements to create the tables and indexes in the database the given 69 * connection is connected to 70 * Note: Official GDB's are created by Alex Pico's script, not with this code. 71 * This is just here for testing purposes. 69 * connection is connected to. 72 70 */ 73 abstract public void createGdbTables() ;71 abstract public void createGdbTables() throws IDMapperException; 74 72 73 abstract public void commit() throws IDMapperException; 74 75 abstract public void finalize() throws IDMapperException; 75 76 }
