summaryrefslogtreecommitdiffstats
path: root/modules/hebrew-wlc/WLC2OSIS
diff options
context:
space:
mode:
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." ) ;
- }
-
- }
-//----------------------------------------------------------------------------
-}
-//==============================================================================
-//==============================================================================