Define "static final long serialVersionUID" in java classes in
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Fri, 1 Jan 2010 02:01:15 +0000 (02:01 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Fri, 1 Jan 2010 02:01:15 +0000 (02:01 +0000)
RMIC tests to silence warnings from gcj-4.4.

git-svn-id: http://scons.tigris.org/svn/scons/trunk@4588 fdb21ef1-2011-0410-befe-b5e4ea1792b1

test/Java/RMIC.py
test/Repository/RMIC.py

index 5b6cf5fbbcd7eba801d928f0eb353abb6400a8bb..f08186e1626e428a285c53fd2223af65cd48fbc0 100644 (file)
@@ -153,6 +153,8 @@ import java.rmi.server.UnicastRemoteObject;
 
 public class Example1 extends UnicastRemoteObject implements Hello {
 
+    static final long serialVersionUID = 0;
+
     public Example1() throws RemoteException {
         super();
     }
@@ -190,6 +192,8 @@ import java.rmi.server.UnicastRemoteObject;
 
 public class Example2 extends UnicastRemoteObject implements Hello {
 
+    static final long serialVersionUID = 0;
+
     public Example2() throws RemoteException {
         super();
     }
@@ -238,6 +242,8 @@ import java.rmi.server.UnicastRemoteObject;
 
 public class Example3 extends UnicastRemoteObject implements Hello {
 
+    static final long serialVersionUID = 0;
+
     public Example3() throws RemoteException {
         super();
     }
@@ -275,6 +281,8 @@ import java.rmi.server.UnicastRemoteObject;
 
 public class Example4 extends UnicastRemoteObject implements Hello {
 
+    static final long serialVersionUID = 0;
+
     public Example4() throws RemoteException {
         super();
     }
index ea48d2c91296626fcaa8b7511fc62847cb34fdd9..e00bb43fa24375d5203b9b110ed063a4805bbca4 100644 (file)
@@ -91,6 +91,8 @@ import java.rmi.server.UnicastRemoteObject;
 
 public class Foo1 extends UnicastRemoteObject implements Hello {
 
+    static final long serialVersionUID = 0;
+
     public Foo1() throws RemoteException {
         super();
     }
@@ -128,6 +130,8 @@ import java.rmi.server.UnicastRemoteObject;
 
 public class Foo2 extends UnicastRemoteObject implements Hello {
 
+    static final long serialVersionUID = 0;
+
     public Foo2() throws RemoteException {
         super();
     }
@@ -207,6 +211,8 @@ import java.rmi.server.UnicastRemoteObject;
 
 public class Foo1 extends UnicastRemoteObject implements Hello {
 
+    static final long serialVersionUID = 0;
+
     public Foo1() throws RemoteException {
         super();
     }
@@ -244,6 +250,8 @@ import java.rmi.server.UnicastRemoteObject;
 
 public class Foo2 extends UnicastRemoteObject implements Hello {
 
+    static final long serialVersionUID = 0;
+
     public Foo2() throws RemoteException {
         super();
     }