Commit f8575098 by Tom Tromey Committed by Tom Tromey

* java/rmi/registry/RegistryHandler.java: Deprecate.

From-SVN: r63630
parent 1a8fc8a7
2003-03-01 Tom Tromey <tromey@redhat.com> 2003-03-01 Tom Tromey <tromey@redhat.com>
* java/rmi/registry/RegistryHandler.java: Deprecate.
2003-03-01 Tom Tromey <tromey@redhat.com>
* javax/accessibility/AccessibleEditableText.java, * javax/accessibility/AccessibleEditableText.java,
javax/accessibility/AccessibleHyperlink.java: New versions from javax/accessibility/AccessibleHyperlink.java: New versions from
Classpath. Classpath.
......
/* /*
Copyright (c) 1996, 1997, 1998, 1999 Free Software Foundation, Inc. Copyright (c) 1996, 1997, 1998, 1999, 2003 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -40,10 +40,16 @@ package java.rmi.registry; ...@@ -40,10 +40,16 @@ package java.rmi.registry;
import java.rmi.RemoteException; import java.rmi.RemoteException;
import java.rmi.UnknownHostException; import java.rmi.UnknownHostException;
/**
* An internal interface that should no longer be used.
* @deprecated
*/
public interface RegistryHandler { public interface RegistryHandler {
/** @deprecated */
public Registry registryStub(String host, int port) throws RemoteException, UnknownHostException; public Registry registryStub(String host, int port) throws RemoteException, UnknownHostException;
/** @deprecated */
public Registry registryImpl(int port) throws RemoteException; public Registry registryImpl(int port) throws RemoteException;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment