Show
Ignore:
Timestamp:
02/27/10 20:02:04 (2 years ago)
Author:
martijn
Message:

Tweaked rdb.construct package for coming HMDB update

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/org.bridgedb.rdb.construct/src/org/bridgedb/rdb/construct/GdbConstruct.java

    r317 r320  
    3232         * @return 1 if addition was successful, 0 otherwise.  
    3333         */ 
    34         public int addGene(Xref ref, String bpText);  
     34        public int addGene(Xref ref); 
    3535 
    3636        /** 
     
    6767        /** 
    6868         * 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. 
    7270         */ 
    73         abstract public void createGdbTables();  
     71        abstract public void createGdbTables() throws IDMapperException;         
    7472 
     73        abstract public void commit() throws IDMapperException; 
     74         
     75        abstract public void finalize() throws IDMapperException; 
    7576}