diff options
Diffstat (limited to 'test/Java')
-rw-r--r-- | test/Java/RMIC.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Java/RMIC.py b/test/Java/RMIC.py index 5b6cf5f..f08186e 100644 --- a/test/Java/RMIC.py +++ b/test/Java/RMIC.py @@ -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(); } |