Search in sources :

Example 1 with BibleInstaller

use of com.tyndalehouse.step.core.models.BibleInstaller in project step by STEPBible.

the class JSwordModuleServiceImpl method addDirectoryInstaller.

@Override
public BibleInstaller addDirectoryInstaller(final String directoryPath) {
    final DirectoryListingInstaller installer = new DirectoryListingInstaller(directoryPath, directoryPath);
    this.bookInstallers.add(installer);
    return new BibleInstaller(this.bookInstallers.size() - 1, installer.getInstallerName(), false);
}
Also used : DirectoryListingInstaller(com.tyndalehouse.step.core.data.DirectoryListingInstaller) BibleInstaller(com.tyndalehouse.step.core.models.BibleInstaller)

Example 2 with BibleInstaller

use of com.tyndalehouse.step.core.models.BibleInstaller in project step by STEPBible.

the class BibleInformationServiceImpl method getInstallers.

@Override
public List<BibleInstaller> getInstallers() {
    List<BibleInstaller> bibleInstallers = new ArrayList<BibleInstaller>();
    final List<Installer> installers = this.jswordModule.getInstallers();
    for (int ii = 0; ii < installers.size(); ii++) {
        final Installer installer = installers.get(ii);
        String name = installer.getInstallerDefinition();
        boolean accessesInternet = true;
        if (installer instanceof StepHttpSwordInstaller) {
            name = ((StepHttpSwordInstaller) installer).getInstallerName();
            accessesInternet = true;
        } else if (installer instanceof DirectoryInstaller) {
            name = ((DirectoryInstaller) installer).getInstallerName();
            accessesInternet = false;
        }
        bibleInstallers.add(new BibleInstaller(ii, name, accessesInternet));
    }
    return bibleInstallers;
}
Also used : StepHttpSwordInstaller(com.tyndalehouse.step.core.data.StepHttpSwordInstaller) BibleInstaller(com.tyndalehouse.step.core.models.BibleInstaller) Installer(org.crosswire.jsword.book.install.Installer) DirectoryInstaller(com.tyndalehouse.step.core.data.DirectoryInstaller) ArrayList(java.util.ArrayList) BibleInstaller(com.tyndalehouse.step.core.models.BibleInstaller) DirectoryInstaller(com.tyndalehouse.step.core.data.DirectoryInstaller) StepHttpSwordInstaller(com.tyndalehouse.step.core.data.StepHttpSwordInstaller)

Aggregations

BibleInstaller (com.tyndalehouse.step.core.models.BibleInstaller)2 DirectoryInstaller (com.tyndalehouse.step.core.data.DirectoryInstaller)1 DirectoryListingInstaller (com.tyndalehouse.step.core.data.DirectoryListingInstaller)1 StepHttpSwordInstaller (com.tyndalehouse.step.core.data.StepHttpSwordInstaller)1 ArrayList (java.util.ArrayList)1 Installer (org.crosswire.jsword.book.install.Installer)1