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

jswordcvs at crosswire.org jswordcvs at crosswire.org
Sun Nov 28 14:34:46 MST 2004


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

Modified Files:
	RemoteBook.java ParamName.java MethodName.java 
	ConverterException.java RemoterException.java 
Log Message:
intellij refactor - not critical

Index: RemoteBook.java
===================================================================
RCS file: /cvs/jsword/jsword/java/limbo/org/crosswire/jsword/book/remote/RemoteBook.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** RemoteBook.java	9 Oct 2004 21:45:05 -0000	1.8
--- RemoteBook.java	28 Nov 2004 21:34:44 -0000	1.9
***************
*** 78,82 ****
              SAXEventProvider provider = new JDOMSAXEventProvider(doc);
  
!             return new BookData(provider);
          }
          catch (RemoterException ex)
--- 78,82 ----
              SAXEventProvider provider = new JDOMSAXEventProvider(doc);
  
!             return new BookData(provider, this, key);
          }
          catch (RemoterException ex)

Index: MethodName.java
===================================================================
RCS file: /cvs/jsword/jsword/java/limbo/org/crosswire/jsword/book/remote/MethodName.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** MethodName.java	21 Sep 2004 17:46:23 -0000	1.2
--- MethodName.java	28 Nov 2004 21:34:44 -0000	1.3
***************
*** 3,7 ****
  import java.io.Serializable;
  
- 
  /**
   * Set of constants for the types of RemoteMethod.
--- 3,6 ----
***************
*** 110,115 ****
      private static final MethodName[] VALUES =
      {
!                     GETBIBLES, GETDATA, FINDPASSAGE
      };
  
  }
\ No newline at end of file
--- 109,120 ----
      private static final MethodName[] VALUES =
      {
!         GETBIBLES,
!         GETDATA,
!         FINDPASSAGE
      };
  
+     /**
+      * Serialization ID
+      */
+     private static final long serialVersionUID = 3905528202582701873L;
  }
\ No newline at end of file

Index: ConverterException.java
===================================================================
RCS file: /cvs/jsword/jsword/java/limbo/org/crosswire/jsword/book/remote/ConverterException.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** ConverterException.java	21 Sep 2004 17:46:23 -0000	1.2
--- ConverterException.java	28 Nov 2004 21:34:44 -0000	1.3
***************
*** 1,3 ****
- 
  package org.crosswire.jsword.book.remote;
  
--- 1,2 ----
***************
*** 32,36 ****
  public class ConverterException extends LucidException
  {
!     /**
       * Construct the Exception with a message
       * @param msg The resource id to read
--- 31,35 ----
  public class ConverterException extends LucidException
  {
! 	/**
       * Construct the Exception with a message
       * @param msg The resource id to read
***************
*** 71,73 ****
--- 70,77 ----
          super(msg, ex, params);
      }
+ 
+     /**
+      * Serialization ID
+      */
+     private static final long serialVersionUID = 3256728359672100401L;
  }

Index: ParamName.java
===================================================================
RCS file: /cvs/jsword/jsword/java/limbo/org/crosswire/jsword/book/remote/ParamName.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ParamName.java	9 Oct 2004 21:45:05 -0000	1.3
--- ParamName.java	28 Nov 2004 21:34:44 -0000	1.4
***************
*** 29,33 ****
  public class ParamName implements Serializable
  {
!     static final ParamName PARAM_BIBLE = new ParamName("bible"); //$NON-NLS-1$
      static final ParamName PARAM_PASSAGE = new ParamName("passage"); //$NON-NLS-1$
      static final ParamName PARAM_FINDSTRING = new ParamName("word"); //$NON-NLS-1$
--- 29,33 ----
  public class ParamName implements Serializable
  {
! 	static final ParamName PARAM_BIBLE = new ParamName("bible"); //$NON-NLS-1$
      static final ParamName PARAM_PASSAGE = new ParamName("passage"); //$NON-NLS-1$
      static final ParamName PARAM_FINDSTRING = new ParamName("word"); //$NON-NLS-1$
***************
*** 113,115 ****
          PARAM_FINDSTRING,
      };
! }
\ No newline at end of file
--- 113,120 ----
          PARAM_FINDSTRING,
      };
! 
!     /**
!      * Serialization ID
!      */
!     private static final long serialVersionUID = 3257290244624626230L;
! }

Index: RemoterException.java
===================================================================
RCS file: /cvs/jsword/jsword/java/limbo/org/crosswire/jsword/book/remote/RemoterException.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** RemoterException.java	21 Sep 2004 17:46:23 -0000	1.2
--- RemoterException.java	28 Nov 2004 21:34:44 -0000	1.3
***************
*** 30,34 ****
  public class RemoterException extends LucidException
  {
!     /**
       * Constructor RemoterException.
       */
--- 30,34 ----
  public class RemoterException extends LucidException
  {
! 	/**
       * Constructor RemoterException.
       */
***************
*** 76,80 ****
      public Class getOriginalType()
      {
!         return original_type;
      }
  
--- 76,80 ----
      public Class getOriginalType()
      {
!         return originalType;
      }
  
***************
*** 87,90 ****
       * The original type of that caused this
       */
!     private Class original_type;
  }
--- 87,95 ----
       * The original type of that caused this
       */
!     private Class originalType;
! 
!     /**
!      * Serialization ID
!      */
!     private static final long serialVersionUID = 3689064041213408309L;
  }



More information about the jsword-svn mailing list