Package de.chris_soft.nanoarchive

Examples of de.chris_soft.nanoarchive.DerbyArchive


    String archivePath = AppProperties.getProperty(ArchiveKeys.PROP_KEY_ARCHIVE_DIRECTORY_PATH);
    if (archivePath == null) {
      archivePath = ".";
    }
    try {
      God.archive = new DerbyArchive(new File(archivePath));
    }
    catch (Exception exception) {
      SwingUtils.showError(null, "Couldn't open database!");
      LogUtils.log(exception);
      God.trayIAM.removeSystemTrayIcon();
View Full Code Here


    String archivePath = AppProperties.getProperty(ArchiveKeys.PROP_KEY_ARCHIVE_DIRECTORY_PATH);
    if (archivePath == null) {
      archivePath = ".";
    }
    archive = new DerbyArchive(new File(archivePath));
    documentInputManagement = new DocumentInputManagement(archive, trayIAM);

    setDocumentInputManagementDirectories();

    startDocumentServer();
View Full Code Here

TOP

Related Classes of de.chris_soft.nanoarchive.DerbyArchive

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.