OSDN Git Service

2003-03-31 Michael Koch <konqueror@gmx.de>
[pf3gnuchains/gcc-fork.git] / libjava / java / rmi / server / RemoteCall.java
index 7621152..bccbaf1 100644 (file)
@@ -48,18 +48,39 @@ import java.io.StreamCorruptedException;
  */
 public interface RemoteCall
 {
+  /**
+   * @deprecated
+   */
   public ObjectOutput getOutputStream () throws IOException;
 
+  /**
+   * @deprecated
+   */
   public void releaseOutputStream () throws IOException;
 
+  /**
+   * @deprecated
+   */
   public ObjectInput getInputStream () throws IOException;
 
+  /**
+   * @deprecated
+   */
   public void releaseInputStream () throws IOException;
 
+  /**
+   * @deprecated
+   */
   public ObjectOutput getResultStream (boolean success)
     throws IOException, StreamCorruptedException;
 
+  /**
+   * @deprecated
+   */
   public void executeCall () throws Exception;
 
+  /**
+   * @deprecated
+   */
   public void done () throws IOException;
 }