diff options
| author | Michael Koch <konqueror@gmx.de> | 2003-03-31 06:32:37 +0000 |
|---|---|---|
| committer | Michael Koch <mkoch@gcc.gnu.org> | 2003-03-31 06:32:37 +0000 |
| commit | 60c98fd6115a55ff13c492d2b022925bc3f80111 (patch) | |
| tree | fa831270c85982f422006a91567c687feca02603 /libjava/java/rmi/server/RemoteRef.java | |
| parent | 2ce0d0b097225538935a0ac9e1b713c024183547 (diff) | |
VMID.java, [...]: Reformatted.
2003-03-31 Michael Koch <konqueror@gmx.de>
* 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.
From-SVN: r65078
Diffstat (limited to 'libjava/java/rmi/server/RemoteRef.java')
| -rw-r--r-- | libjava/java/rmi/server/RemoteRef.java | 35 |
1 files changed, 22 insertions, 13 deletions
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 (); } |
