An Eclipse RCP reimplementation of bgg1tool by Nand. See http://www.nand.it/nandeck/ for the original tool.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
951B

  1. package xyz.veronie.bgg.localdb;
  2. import java.io.File;
  3. import java.util.ArrayList;
  4. import java.util.List;
  5. import xyz.veronie.bgg.result.ThingMetaData;
  6. public class LocalDbAdapterService {
  7. private SqliteController sqliteController;
  8. public LocalDbAdapterService() {
  9. initDb();
  10. }
  11. private void initDb() {
  12. File dbFile = new File(SqliteController.DB_PATH);
  13. if(!dbFile.exists()) {
  14. SqliteController.getInstance().createSchema();
  15. }
  16. sqliteController = SqliteController.getInstance();
  17. }
  18. /// add a list of things with the given name
  19. public void storeThingList(List<ThingMetaData> things, String name) {
  20. sqliteController.openThingList(name);
  21. sqliteController.addToThingList(name, things);
  22. }
  23. /// retrieve a list of things with the given name
  24. public List<ThingMetaData> retrieveThingList(String name) {
  25. // TODO: implement retrieve thing list
  26. return new ArrayList<ThingMetaData>();
  27. }
  28. }