From 6f55a7d705105ca52bd2ae72faea458724966b1d Mon Sep 17 00:00:00 2001 From: mkoch Date: Mon, 31 Mar 2003 06:32:37 +0000 Subject: 2003-03-31 Michael Koch * java/rmi/dgc/VMID.java, java/rmi/registry/RegistryHandler.java, java/rmi/server/LogStream.java, java/rmi/server/Operation.java, java/rmi/server/RemoteCall.java, java/rmi/server/RemoteRef.java, java/rmi/server/RemoteStub.java: Reformatted. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@65078 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/java/rmi/server/RemoteRef.java | 35 +++++++++++++++++++++------------- 1 file changed, 22 insertions(+), 13 deletions(-) (limited to 'libjava/java/rmi/server/RemoteRef.java') diff --git a/libjava/java/rmi/server/RemoteRef.java b/libjava/java/rmi/server/RemoteRef.java index 4abf6e10165..d9f92320897 100644 --- a/libjava/java/rmi/server/RemoteRef.java +++ b/libjava/java/rmi/server/RemoteRef.java @@ -43,19 +43,28 @@ import java.rmi.Remote; import java.rmi.RemoteException; import java.io.ObjectOutput; -public interface RemoteRef - extends Externalizable { +public interface RemoteRef extends Externalizable +{ + public static final long serialVersionUID = 0; + + public static final String packagePrefix = "gnu.java.rmi.server"; -public static final long serialVersionUID = 0; -public static final String packagePrefix = "gnu.java.rmi.server"; - -public void invoke(RemoteCall call) throws Exception; -public Object invoke(Remote obj, Method method, Object[] params, long opnum) throws Exception; -public RemoteCall newCall(RemoteObject obj, Operation[] op, int opnum, long hash) throws RemoteException; -public void done(RemoteCall call) throws RemoteException; -public boolean remoteEquals(RemoteRef ref); -public int remoteHashCode(); -public String getRefClass(ObjectOutput out); -public String remoteToString(); + public void invoke(RemoteCall call) throws Exception; + + public Object invoke (Remote obj, Method method, Object[] params, long opnum) + throws Exception; + + public RemoteCall newCall (RemoteObject obj, Operation[] op, int opnum, + long hash) + throws RemoteException; + public void done (RemoteCall call) throws RemoteException; + + public boolean remoteEquals (RemoteRef ref); + + public int remoteHashCode (); + + public String getRefClass (ObjectOutput out); + + public String remoteToString (); } -- cgit v1.2.1