Uses of Class
org.crosswire.jsword.passage.VerseRange

Packages that use VerseRange
org.crosswire.bibledesktop.passage This package contains Swing MVC models to help displaying passages. 
org.crosswire.jsword.book.sword.processing Interface and default implementation for the transformation of raw text into XML. 
org.crosswire.jsword.passage The core responsibility of the passage package is to store and collate information about the structure of the Bible - The most important classes are Passage, PassageTally and Strongs
org.crosswire.jsword.versification The core responsibility of the versification package is to understand verse references. 
 

Uses of VerseRange in org.crosswire.bibledesktop.passage
 

Fields in org.crosswire.bibledesktop.passage declared as VerseRange
private  VerseRange WholeBibleTreeNode.range
          The range that this node refers to
 

Methods in org.crosswire.bibledesktop.passage that return VerseRange
 VerseRange WholeBibleTreeNode.getVerseRange()
          The current Passage number
 

Constructors in org.crosswire.bibledesktop.passage with parameters of type VerseRange
WholeBibleTreeNode(TreeNode parent, VerseRange range, WholeBibleTreeNode.Level level)
          This constructor is for when we are really a BookTreeNode
 

Uses of VerseRange in org.crosswire.jsword.book.sword.processing
 

Methods in org.crosswire.jsword.book.sword.processing with parameters of type VerseRange
 void RawTextToXmlProcessor.preRange(VerseRange range, List<org.jdom2.Content> partialDom)
          Executes before a range is read from the raw data.
 void NoOpRawTextProcessor.preRange(VerseRange range, List<org.jdom2.Content> partialDom)
           
 

Uses of VerseRange in org.crosswire.jsword.passage
 

Fields in org.crosswire.jsword.passage declared as VerseRange
private  VerseRange RangedPassage.VerseRangeIterator.next
          What are we going to reply with next?
private  VerseRange AbstractPassage.VerseRangeIterator.next_range
          What is the next VerseRange to be considered
protected  VerseRange PassageTally.TalliedVerseRange.range
          The verse range
 

Methods in org.crosswire.jsword.passage that return VerseRange
abstract  VerseRange RestrictionType.blur(Versification v11n, Verse verse, int blurDown, int blurUp)
          Blur a verse the specified amount.
abstract  VerseRange RestrictionType.blur(Versification v11n, VerseRange range, int blurDown, int blurUp)
          Blur a verse range the specified amount.
 VerseRange VerseRange.clone()
           
static VerseRange VerseRangeFactory.fromString(String orginal)
          Deprecated. use VerseRangeFactory.fromString(Versification, String) instead
static VerseRange VerseRangeFactory.fromString(String original, VerseRange basis)
          Deprecated. use VerseRangeFactory.fromString(Versification, String, VerseRange) instead
static VerseRange VerseRangeFactory.fromString(Versification v11n, String orginal)
          Construct a VerseRange from a human readable string.
static VerseRange VerseRangeFactory.fromString(Versification v11n, String original, VerseRange basis)
          Construct a VerseRange from a String and a VerseRange.
private static VerseRange VerseRangeFactory.fromText(Versification v11n, String original, String startVerseDesc, String endVerseDesc, VerseRange basis)
          The internal mechanism by which we construct a VerseRange
 VerseRange SynchronizedPassage.getRangeAt(int offset, RestrictionType restrict)
           
 VerseRange RocketPassage.getRangeAt(int offset, RestrictionType restrict)
           
 VerseRange ReadOnlyPassage.getRangeAt(int offset, RestrictionType restrict)
           
 VerseRange Passage.getRangeAt(int offset, RestrictionType restrict)
          Get a specific VerseRange from this collection
 VerseRange AbstractPassage.getRangeAt(int offset, RestrictionType restrict)
           
static VerseRange VerseRange.intersection(VerseRange a, VerseRange b)
          Create a VerseRange that is the stuff in VerseRange a that is also in VerseRange b.
 VerseRange PassageTally.OrderedVerseRangeIterator.next()
           
 VerseRange AbstractPassage.VerseRangeIterator.next()
           
static VerseRange[] VerseRange.remainder(VerseRange a, VerseRange b)
          Create a VerseRange that is the stuff left of VerseRange a when you remove the stuff in VerseRange b.
abstract  VerseRange RestrictionType.toRange(Versification v11n, Verse verse, int count)
          Create a range from the verse having the specified number of verses.
protected static VerseRange AbstractPassage.toVerseRange(Object base)
          Deprecated. use AbstractPassage.toVerseRange(Versification, Object) instead
protected static VerseRange AbstractPassage.toVerseRange(Versification v11n, Object base)
           
 

Methods in org.crosswire.jsword.passage with parameters of type VerseRange
 boolean VerseRange.adjacentTo(VerseRange that)
          Are the 2 VerseRanges in question contiguous.
abstract  VerseRange RestrictionType.blur(Versification v11n, VerseRange range, int blurDown, int blurUp)
          Blur a verse range the specified amount.
 boolean VerseRange.contains(VerseRange that)
          Is the given range within our range.
abstract  Verse AccuracyType.createStartVerse(Versification v11n, String original, VerseRange verseRangeBasis, String[] parts)
           
static VerseRange VerseRangeFactory.fromString(String original, VerseRange basis)
          Deprecated. use VerseRangeFactory.fromString(Versification, String, VerseRange) instead
static Verse VerseFactory.fromString(String original, VerseRange verseRangeBasis)
          Deprecated. use VerseFactory.fromString(Versification, String, VerseRange) instead
static VerseRange VerseRangeFactory.fromString(Versification v11n, String original, VerseRange basis)
          Construct a VerseRange from a String and a VerseRange.
static Verse VerseFactory.fromString(Versification v11n, String original, VerseRange verseRangeBasis)
           
static AccuracyType AccuracyType.fromText(Versification v11n, String original, String[] parts, AccuracyType verseAccuracy, VerseRange basis)
          Does this string exactly define a Verse.
static AccuracyType AccuracyType.fromText(Versification v11n, String original, String[] parts, VerseRange basis)
           
private static VerseRange VerseRangeFactory.fromText(Versification v11n, String original, String startVerseDesc, String endVerseDesc, VerseRange basis)
          The internal mechanism by which we construct a VerseRange
static VerseRange VerseRange.intersection(VerseRange a, VerseRange b)
          Create a VerseRange that is the stuff in VerseRange a that is also in VerseRange b.
 boolean VerseRange.overlaps(VerseRange that)
          Do the 2 VerseRanges in question actually overlap.
static VerseRange[] VerseRange.remainder(VerseRange a, VerseRange b)
          Create a VerseRange that is the stuff left of VerseRange a when you remove the stuff in VerseRange b.
 

Constructors in org.crosswire.jsword.passage with parameters of type VerseRange
PassageTally.TalliedVerseRange(VerseRange range, int tally)
          Convenience ctor to set the public variables
VerseRange.VerseIterator(VerseRange range)
          Ctor
VerseRange(VerseRange a, VerseRange b)
          Merge 2 VerseRanges together.
 

Uses of VerseRange in org.crosswire.jsword.versification
 

Methods in org.crosswire.jsword.versification that return VerseRange
 VerseRange Versification.getAllVerses()
          Get a VerseRange encompassing this Versification.
 


Copyright ? 2003-2011