summaryrefslogtreecommitdiffstats
path: root/modules/hebrew-wlc/WLC2OSIS
diff options
context:
space:
mode:
authorMartin Gruner <mg.pub@gmx.net>2004-06-05 15:38:56 +0000
committerMartin Gruner <mg.pub@gmx.net>2004-06-05 15:38:56 +0000
commit9cf2798126c922f61a6e91431478fd6246d6bc7a (patch)
treef7ac10746c23aabb24b9070cfdbfb8f8b371c1a8 /modules/hebrew-wlc/WLC2OSIS
parentce1ee7f0f733f4576171887c530ccb5b3954cd1e (diff)
downloadsword-tools-9cf2798126c922f61a6e91431478fd6246d6bc7a.tar.gz
*** empty log message ***
git-svn-id: https://www.crosswire.org/svn/sword-tools/trunk@18 07627401-56e2-0310-80f4-f8cd0041bdcd
Diffstat (limited to 'modules/hebrew-wlc/WLC2OSIS')
-rw-r--r--modules/hebrew-wlc/WLC2OSIS/WLC2OSIS/Parse/Tanach.java49
1 files changed, 0 insertions, 49 deletions
diff --git a/modules/hebrew-wlc/WLC2OSIS/WLC2OSIS/Parse/Tanach.java b/modules/hebrew-wlc/WLC2OSIS/WLC2OSIS/Parse/Tanach.java
deleted file mode 100644
index f019865..0000000
--- a/modules/hebrew-wlc/WLC2OSIS/WLC2OSIS/Parse/Tanach.java
+++ /dev/null
@@ -1,49 +0,0 @@
-package WLC2OSIS.Parse ;
-
-import WLC2OSIS.* ;
-import WLC2OSIS.Translate.* ;
-import WLC2OSIS.Utilities.* ;
-
-//==============================================================================
-/**
- * <b>Processes Tanach.</b>
- */
-//==============================================================================
-public class Tanach{
-
-WLC2OSIS A ;
-Parser P ;
-
-//-----------------------------------------------------------------------------
-
-public Tanach(WLC2OSIS A, Parser P ) {
- this.A = A ;
- this.P = P ;
- }
-//------------------------------------------------------------------------------
-
-// Starts a book.
-
-public void start(){
- P.ChapterVerseCount = 0 ;
- P.BookVerseCount = 0 ;
- P.BookChapterCount = 0 ;
- P.TanachVerseCount = 0 ;
- P.TanachChapterCount = 0 ;
- P.TanachBookCount = 0 ;
- }
-//------------------------------------------------------------------------------
-
-// Ends a book.
-
-public void end(){
- if (P.Book != null){
- System.out.println("\nTanach ends with "
- + A.F.i(P.TanachBookCount,2) + " books." ) ;
- }
-
- }
-//----------------------------------------------------------------------------
-}
-//==============================================================================
-//==============================================================================