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

From-SVN: r63630
This commit is contained in:
Tom Tromey 2003-03-01 22:35:25 +00:00 committed by Tom Tromey
parent 1a8fc8a76c
commit f857509881
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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,

View File

@ -1,5 +1,5 @@
/*
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.
@ -40,10 +40,16 @@ package java.rmi.registry;
import java.rmi.RemoteException;
import java.rmi.UnknownHostException;
/**
* An internal interface that should no longer be used.
* @deprecated
*/
public interface RegistryHandler {
/** @deprecated */
public Registry registryStub(String host, int port) throws RemoteException, UnknownHostException;
/** @deprecated */
public Registry registryImpl(int port) throws RemoteException;
}