[jsword-svn] r1050 - trunk/jsword/src/main/java/org/crosswire/jsword/book/sword

dmsmith at crosswire.org dmsmith at crosswire.org
Thu Mar 16 15:02:48 MST 2006


Author: dmsmith
Date: 2006-03-16 15:02:44 -0700 (Thu, 16 Mar 2006)
New Revision: 1050

Modified:
   trunk/jsword/src/main/java/org/crosswire/jsword/book/sword/SwordConstants.java
Log:
made package protected method public

Modified: trunk/jsword/src/main/java/org/crosswire/jsword/book/sword/SwordConstants.java
===================================================================
--- trunk/jsword/src/main/java/org/crosswire/jsword/book/sword/SwordConstants.java	2006-03-16 22:01:37 UTC (rev 1049)
+++ trunk/jsword/src/main/java/org/crosswire/jsword/book/sword/SwordConstants.java	2006-03-16 22:02:44 UTC (rev 1050)
@@ -85,22 +85,22 @@
     /**
      * constant for the introduction
      */
-    static final int TESTAMENT_INTRO = 0;
+    public static final int TESTAMENT_INTRO = 0;
 
     /**
      * constant for the old testament
      */
-    static final int TESTAMENT_OLD = 1;
+    public static final int TESTAMENT_OLD = 1;
 
     /**
      * constant for the new testament
      */
-    static final int TESTAMENT_NEW = 2;
+    public static final int TESTAMENT_NEW = 2;
 
     /**
      * Get the testament of a given verse
      */
-    static int getTestament(Verse v)
+    public static int getTestament(Verse v)
     {
         int ord = v.getOrdinal();
 



More information about the jsword-svn mailing list