Prepared new tests
This commit is contained in:
@@ -9,6 +9,6 @@ import java.util.Collection;
|
||||
public interface DatabaseManager<E> extends Database {
|
||||
public void saveObjects(Collection<E> objects) throws ExecutionControl.NotImplementedException, IOException, SQLException;
|
||||
public Collection<E> getObjects() throws ExecutionControl.NotImplementedException;
|
||||
public void saveObject(E object) throws ExecutionControl.NotImplementedException, IOException, SQLException;
|
||||
public E getObject(int id) throws ExecutionControl.NotImplementedException;
|
||||
public void saveObject(E object) throws IOException, SQLException;
|
||||
public E getObject(int id) throws SQLException;
|
||||
}
|
||||
Reference in New Issue
Block a user