summaryrefslogtreecommitdiff
path: root/libjava/java/rmi/server/RemoteCall.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2003-03-31 06:32:37 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2003-03-31 06:32:37 +0000
commit60c98fd6115a55ff13c492d2b022925bc3f80111 (patch)
treefa831270c85982f422006a91567c687feca02603 /libjava/java/rmi/server/RemoteCall.java
parent2ce0d0b097225538935a0ac9e1b713c024183547 (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/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;
}