[jsword-svn] jsword/java/jsword/org/crosswire/jsword/book s

jswordcvs at crosswire.org jswordcvs at crosswire.org
Mon Jan 24 16:27:01 MST 2005


Update of /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book
In directory www.crosswire.org:/tmp/cvs-serv22528/java/jsword/org/crosswire/jsword/book

Modified Files:
	IndexStatus.java CaseType.java Openness.java BookType.java 
Log Message:
Added or changed serialVersionUID to real value

Index: Openness.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/Openness.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** Openness.java	21 Sep 2004 17:46:23 -0000	1.10
--- Openness.java	24 Jan 2005 23:26:59 -0000	1.11
***************
*** 140,146 ****
          COMMERCIAL
      };
      /**
!      * SERIALUID(dms): A placeholder for the ultimate version id.
       */
!     private static final long serialVersionUID = 1L;
  }
--- 140,147 ----
          COMMERCIAL
      };
+ 
      /**
!      * Serialization ID
       */
!     private static final long serialVersionUID = 3257844364125483320L;
  }

Index: IndexStatus.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/IndexStatus.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** IndexStatus.java	9 Oct 2004 21:45:05 -0000	1.1
--- IndexStatus.java	24 Jan 2005 23:26:59 -0000	1.2
***************
*** 137,142 ****
  
      /**
!      * SERIALUID(dms): A placeholder for the ultimate version id.
       */
!     private static final long serialVersionUID = 1L;
  }
--- 137,142 ----
  
      /**
!      * Serialization ID
       */
!     private static final long serialVersionUID = 3256718472791537204L;
  }

Index: BookType.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/BookType.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** BookType.java	9 Oct 2004 21:45:05 -0000	1.7
--- BookType.java	24 Jan 2005 23:26:59 -0000	1.8
***************
*** 134,139 ****
  
      /**
!      * SERIALUID(dms): A placeholder for the ultimate version id.
       */
!     private static final long serialVersionUID = 1L;
  }
--- 134,139 ----
  
      /**
!      * Serialization ID
       */
!     private static final long serialVersionUID = 3256727260177708345L;
  }

Index: CaseType.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/CaseType.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** CaseType.java	8 Sep 2004 19:55:07 -0000	1.3
--- CaseType.java	24 Jan 2005 23:26:59 -0000	1.4
***************
*** 32,40 ****
      public static final CaseType LOWER = new CaseType("LOWER") //$NON-NLS-1$
      {
- 
          public String setCase(String word)
          {
              return word.toLowerCase();
          }
      };
  
--- 32,44 ----
      public static final CaseType LOWER = new CaseType("LOWER") //$NON-NLS-1$
      {
          public String setCase(String word)
          {
              return word.toLowerCase();
          }
+ 
+         /**
+          * Serialization ID
+          */
+         private static final long serialVersionUID = 3546637707360286256L;
      };
  
***************
*** 69,72 ****
--- 73,81 ----
                     + "-" + toSentenceCase(word.substring(index + 1)); //$NON-NLS-1$
          }
+ 
+         /**
+          * Serialization ID
+          */
+         private static final long serialVersionUID = 3905520510312985138L;
      };
  
***************
*** 77,80 ****
--- 86,94 ----
              return word.toUpperCase();
          }
+ 
+         /**
+          * Serialization ID
+          */
+         private static final long serialVersionUID = 3257002163871035698L;
      };
  
***************
*** 90,93 ****
--- 104,112 ----
              throw new IllegalArgumentException(Msg.ERROR_MIXED.toString());
          }
+ 
+         /**
+          * Serialization ID
+          */
+         private static final long serialVersionUID = 3546925766555547956L;
      };
  



More information about the jsword-svn mailing list