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

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