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
This commit is contained in:
Michael Koch 2003-03-31 06:32:37 +00:00 committed by Michael Koch
parent 2ce0d0b097
commit 60c98fd611
8 changed files with 193 additions and 141 deletions

View file

@ -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;
}