From 9cf2798126c922f61a6e91431478fd6246d6bc7a Mon Sep 17 00:00:00 2001 From: Martin Gruner Date: Sat, 5 Jun 2004 15:38:56 +0000 Subject: *** empty log message *** git-svn-id: https://www.crosswire.org/svn/sword-tools/trunk@18 07627401-56e2-0310-80f4-f8cd0041bdcd --- .../hebrew-wlc/WLC2OSIS/WLC2OSIS/Parse/Tanach.java | 49 ---------------------- 1 file changed, 49 deletions(-) delete mode 100644 modules/hebrew-wlc/WLC2OSIS/WLC2OSIS/Parse/Tanach.java (limited to 'modules/hebrew-wlc') 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.* ; - -//============================================================================== -/** - * Processes Tanach. - */ -//============================================================================== -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." ) ; - } - - } -//---------------------------------------------------------------------------- -} -//============================================================================== -//============================================================================== -- cgit