Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
com.eireneh.bible.book.Bible

Uses of Bible in com.eireneh.bible.book
 

Subinterfaces of Bible in com.eireneh.bible.book
 interface StudyBible
          A WordStudy is-an extension to Bible that knows about the original Greek/Hebrew in the form of Strongs numbers, and how these original words were translated into English (or whatever).
 

Classes in com.eireneh.bible.book that implement Bible
 class AbstractBible
          An AbstractBible implements a few of the more generic methods of Bible, and takes care of a BookConfig object.
 class VersewiseBible
          The VersewiseMutableBook class makes it easier to implement MutableBook by splitting the job up into a Verse by Verse effort.
 

Fields in com.eireneh.bible.book declared as Bible
private  Bible Verifier.bible1
          The first Bible that we are checking
private  Bible Verifier.bible2
          The second Bible that we are checking
private static Bible Bibles.default_bible
          The default Bible
 

Methods in com.eireneh.bible.book that return Bible
 Bible Verifier.getBible1()
          The first Bible that we are checking
 Bible Verifier.getBible2()
          The second Bible that we are checking
static Bible Bibles.getBible(java.lang.String name)
          Load up a Bible by name
static Bible Bibles.createBible(java.lang.String dest_name, BibleDriver dest_driver)
          Get a MutableBook ready to have generate called.
static Bible Bibles.getDefaultBible()
          Get the current default Bible.
 Bible BibleDriver.getBible(java.lang.String name)
          Fetch a currently existing Bible, read-only
 Bible BibleDriver.createBible(java.lang.String name)
          Create a new blank Bible ready for writing
 

Methods in com.eireneh.bible.book with parameters of type Bible
 void VersewiseBible.generate(Bible version)
          Read from the given source version to generate ourselves
protected  void VersewiseBible.generateText(Bible source)
          Read from the given source version to generate ourselves
protected  void VersewiseBible.generatePassages(Bible source)
          Read from the given source version to generate ourselves
 void Verifier.setBible1(Bible bible1)
          The first Bible that we are checking, this is supposed to be the more accurate of the 2 Bibles, so we use this as a source of the words to check.
 void Verifier.setBible2(Bible bible2)
          The second Bible that we are checking, this is supposed to be the less accurate, or more recent of the 2 Bibles, so we use this in firing ProgressEvents.
static void BookUtil.updatePassageTally(Bible version, com.eireneh.bible.passage.PassageTally tally, java.lang.String[] words)
          A basic version of getPassageTally(String[]) simply calls getPassage(String) in a loop for each word, adding the Verses to an PassageTally that is returned
static void BookUtil.updatePassageTallyFlat(Bible version, com.eireneh.bible.passage.PassageTally tally, java.lang.String[] words)
          This is similar to updatePassageTally() however if a verse matches many words it still only adds on for that verse in the given tally
static com.eireneh.bible.passage.Passage BookUtil.getPassage(Bible version, java.lang.String[] words)
          A basic version of getPassage(String[]) simply calls getPassage(String) in a loop for each word, adding the Verses to an Passage that is returned
 void Bible.generate(Bible version)
          Generation: Read from the given source version to generate ourselves.
 void AbstractBible.generate(Bible version)
          Read from the given source version to generate ourselves.
 

Constructors in com.eireneh.bible.book with parameters of type Bible
Verifier(Bible bible1, Bible bible2)
          Constructor that sets up the Bibles as well.