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

Quick Search    Search Deep

Uses of Class
com.eireneh.bible.passage.Verse

Uses of Verse in com.eireneh.bible.passage
 

Fields in com.eireneh.bible.passage declared as Verse
private  Verse VerseRange.start
          The real data - where do we start? All ctors init this so leave default
private  Verse VerseRange.end
          The real data - where do we end? All ctors init this so leave default
protected static Verse Verse.DEFAULT
          The default verse
static Verse PassageEvent.VERSE_LOWEST
          When the lower verse is null
static Verse PassageEvent.VERSE_HIGHEST
          When the upper verse is null
private  Verse PassageEvent.lower
          The lowest numbered element to have changed
private  Verse PassageEvent.upper
          The highest numbered element tot have changed
private  Verse AbstractPassage.VerseRangeEnumeration.next_verse
          What is the next Verse to be considered
 

Methods in com.eireneh.bible.passage that return Verse
 Verse ReadOnlyPassage.getVerseAt(int offset)
          Get a specific Verse from this collection
 Verse RocketPassage.getVerseAt(int offset)
          Get a specific Verse from this collection
 Verse SynchronizedPassage.getVerseAt(int offset)
          Get a specific Verse from this collection
 Verse VerseRange.getStart()
          Fetch the first verse in this range.
 Verse VerseRange.getEnd()
          Fetch the last verse in this range.
 Verse[] VerseRange.toVerseArray()
          Create an array of Verses
private static Verse VerseRange.calcEnd(Verse start, int verse_count)
          Calculate the last verse in this range.
 Verse[] VerseBase.toVerseArray()
          Create an array of Verses.
 Verse Verse.subtract(int n)
          Get the verse n down from here this Verse.
 Verse Verse.add(int extra)
          Get the verse that is a few verses on from the one we've got.
static Verse Verse.max(Verse a, Verse b)
          Return the bigger of the 2 verses.
static Verse Verse.min(Verse a, Verse b)
          Return the smaller of the 2 verses.
 Verse[] Verse.toVerseArray()
          Create an array of Verses
 Verse PassageEvent.getLowerIndex()
          Returns the lower index of the range.
 Verse PassageEvent.getUpperIndex()
          Returns the upper index of the range.
 Verse Passage.getVerseAt(int offset)
          Get a specific Verse from this collection
 Verse AbstractPassage.getVerseAt(int offset)
          Get a specific Verse from this collection
protected static Verse[] AbstractPassage.toVerseArray(java.lang.Object base)
          Convert the Object to an array of Verses.
 

Methods in com.eireneh.bible.passage with parameters of type Verse
 java.lang.String VerseRange.getName(Verse base)
          Fetch a more sensible shortened version of the name
 boolean VerseRange.contains(Verse that)
          Is the given verse entirely within our range.
private static Verse VerseRange.calcEnd(Verse start, int verse_count)
          Calculate the last verse in this range.
private static int VerseRange.calcVerseCount(Verse start, Verse end)
          Calcualte how many verses in this range
 java.lang.String VerseBase.getName(Verse base)
          Translate the Passage into a human readable string, with the assumption that the specified Verse has just been output, so if we are in the same book, we do not need to display the book name, and so on.
 java.lang.String Verse.getName(Verse base)
          Translate the Passage into a human readable string
 boolean Verse.adjacentTo(Verse that)
          Is this verse adjacent to another verse
 int Verse.subtract(Verse that)
          How many verses are there in between the 2 Verses.
 boolean Verse.isSameChapter(Verse that)
          Is this verse in the same chapter as that one
 boolean Verse.isSameBook(Verse that)
          Is this verse in the same book as that one
static Verse Verse.max(Verse a, Verse b)
          Return the bigger of the 2 verses.
static Verse Verse.min(Verse a, Verse b)
          Return the smaller of the 2 verses.
 int PassageTally.getTallyOf(Verse verse)
          The ranking given to a specific verse
 int PassageTally.getIndexOf(Verse verse)
          What is the index of the give verse in the current ordering scheme
protected  void AbstractPassage.fireIntervalAdded(java.lang.Object source, Verse start, Verse end)
          AbstractPassage subclasses must call this method after one or more elements of the list are added.
protected  void AbstractPassage.fireIntervalRemoved(java.lang.Object source, Verse start, Verse end)
          AbstractPassage subclasses must call this method before one or more elements of the list are added.
protected  void AbstractPassage.fireContentsChanged(java.lang.Object source, Verse start, Verse end)
          AbstractPassage subclasses must call this method before one or more elements of the list are added.
 

Constructors in com.eireneh.bible.passage with parameters of type Verse
VerseRange(java.lang.String desc, Verse basis)
          Construct a VerseRange from a String and a Verse.
VerseRange(Verse start)
          Construct a VerseRange from a Verse.
VerseRange(Verse start, int verse_count)
          Construct a VerseRange from a Verse and a range.
VerseRange(Verse start, int verse_count, boolean patch_up)
          Construct a VerseRange from a Verse and a range.
VerseRange(Verse start, Verse end)
          Construct a VerseRange from 2 Verses If start is later than end then swap the two around.
VerseRange(Verse base_start, int blur_down, int blur_up, int restrict)
          Widen the range of the verses in this list.
Verse(java.lang.String desc, Verse basis)
          Construct a Ref from a String and a Verse.
PassageEvent(java.lang.Object source, int type, Verse lower, Verse upper)
          Constructs a PassageEvent object.