summaryrefslogtreecommitdiff
path: root/libjava/java/rmi/server/RemoteCall.java
diff options
context:
space:
mode:
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2003-03-31 06:32:37 +0000
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2003-03-31 06:32:37 +0000
commit6f55a7d705105ca52bd2ae72faea458724966b1d (patch)
treefa831270c85982f422006a91567c687feca02603 /libjava/java/rmi/server/RemoteCall.java
parenta0aa9cdd008ca2c9df0ead2cae1a1314dcc34b96 (diff)
downloadgcc-6f55a7d705105ca52bd2ae72faea458724966b1d.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@65078 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/rmi/server/RemoteCall.java')
-rw-r--r--libjava/java/rmi/server/RemoteCall.java22
1 files changed, 14 insertions, 8 deletions
diff --git a/libjava/java/rmi/server/RemoteCall.java b/libjava/java/rmi/server/RemoteCall.java
index eac9ee233a9..7621152b688 100644
--- a/libjava/java/rmi/server/RemoteCall.java
+++ b/libjava/java/rmi/server/RemoteCall.java
@@ -46,14 +46,20 @@ import java.io.StreamCorruptedException;
/**
* @deprecated
*/
-public interface RemoteCall {
+public interface RemoteCall
+{
+ public ObjectOutput getOutputStream () throws IOException;
-public ObjectOutput getOutputStream() throws IOException;
-public void releaseOutputStream() throws IOException;
-public ObjectInput getInputStream() throws IOException;
-public void releaseInputStream() throws IOException;
-public ObjectOutput getResultStream(boolean success) throws IOException, StreamCorruptedException;
-public void executeCall() throws Exception;
-public void done() throws IOException;
+ public void releaseOutputStream () throws IOException;
+ public ObjectInput getInputStream () throws IOException;
+
+ public void releaseInputStream () throws IOException;
+
+ public ObjectOutput getResultStream (boolean success)
+ throws IOException, StreamCorruptedException;
+
+ public void executeCall () throws Exception;
+
+ public void done () throws IOException;
}