aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/java/rmi/registry/Registry.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/java/rmi/registry/Registry.java')
-rw-r--r--libjava/classpath/java/rmi/registry/Registry.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/libjava/classpath/java/rmi/registry/Registry.java b/libjava/classpath/java/rmi/registry/Registry.java
index 02d8c50..dabe654 100644
--- a/libjava/classpath/java/rmi/registry/Registry.java
+++ b/libjava/classpath/java/rmi/registry/Registry.java
@@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
-
+
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
@@ -47,25 +47,25 @@ import java.rmi.RemoteException;
public interface Registry extends Remote
{
int REGISTRY_PORT = 1099;
-
+
/**
* Find and return the reference to the object that was previously bound
* to the registry by this name. For remote objects, this method returns
* the stub instances, containing the code for remote invocations.
- *
- * Since jdk 1.5 this method does not longer require the stub class
- * (nameImpl_Stub) to be present. If such class is not found, the stub is
- * replaced by the dynamically constructed proxy class. No attempt to find
- * and load the stubs is made if the system property
- * java.rmi.server.ignoreStubClasses is set to true (set to reduce the
+ *
+ * Since jdk 1.5 this method does not longer require the stub class
+ * (nameImpl_Stub) to be present. If such class is not found, the stub is
+ * replaced by the dynamically constructed proxy class. No attempt to find
+ * and load the stubs is made if the system property
+ * java.rmi.server.ignoreStubClasses is set to true (set to reduce the
* starting time if the stubs are surely not present and exclusively 1.2
* RMI is used).
- *
+ *
* @param name the name of the object
- *
+ *
* @return the reference to that object on that it is possible to invoke
* the (usually remote) object methods.
- *
+ *
* @throws RemoteException
* @throws NotBoundException
* @throws AccessException