aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/util/Dictionary.java
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2002-06-16 21:15:44 +0000
committerTom Tromey <tromey@gcc.gnu.org>2002-06-16 21:15:44 +0000
commit548ce8be4ab154b7d7f42ae8fe8552f9888021d0 (patch)
treed91d4df026dc21bcf38db7c9f56a8deeaa7301c0 /libjava/java/util/Dictionary.java
parent3d05b15f106942bb499c9a5c1d143a3ddb33bd6f (diff)
downloadgcc-548ce8be4ab154b7d7f42ae8fe8552f9888021d0.zip
gcc-548ce8be4ab154b7d7f42ae8fe8552f9888021d0.tar.gz
gcc-548ce8be4ab154b7d7f42ae8fe8552f9888021d0.tar.bz2
RuntimeException.java: Re-merge with Classpath.
* java/lang/RuntimeException.java: Re-merge with Classpath. * java/util/ArrayList.java: Likewise. * java/util/Arrays.java: Likewise. * java/util/BitSet.java: Likewise. * java/util/Dictionary.java: Likewise. * java/util/IdentityHashMap.java: Likewise. * java/util/MissingResourceException.java: Likewise. * java/util/Observer.java: Likewise. * java/util/TooManyListenersException.java: Likewise. * java/util/zip/DataFormatException.java: Likewise. * java/util/zip/ZipException.java: Likewise. From-SVN: r54680
Diffstat (limited to 'libjava/java/util/Dictionary.java')
-rw-r--r--libjava/java/util/Dictionary.java13
1 files changed, 8 insertions, 5 deletions
diff --git a/libjava/java/util/Dictionary.java b/libjava/java/util/Dictionary.java
index 401e45a..53c4d64 100644
--- a/libjava/java/util/Dictionary.java
+++ b/libjava/java/util/Dictionary.java
@@ -1,6 +1,6 @@
/* Dictionary.java -- an abstract (and essentially worthless)
class which is Hashtable's superclass
- Copyright (C) 1998, 2001 Free Software Foundation, Inc.
+ Copyright (C) 1998, 2001, 2002 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -47,18 +47,21 @@ package java.util;
* People at Javasoft are probably embarrassed by it. At this point,
* it might as well be an interface rather than a class, but it remains
* this poor, laughable skeleton for the sake of backwards compatibility.
- * At any rate, this was what came before the <pre>Map</pre> interface
+ * At any rate, this was what came before the {@link Map} interface
* in the Collections framework.
*
* @author Jon Zeppieri
- * @author Eric Blake <ebb9@email.byu.edu>
+ * @author Eric Blake (ebb9@email.byu.edu)
* @see Map
* @see Hashtable
* @since 1.0
* @status updated to 1.4
*/
-public abstract class Dictionary extends Object
+public abstract class Dictionary
{
+ // WARNING: Dictionary is a CORE class in the bootstrap cycle. See the
+ // comments in vm/reference/java/lang/Runtime for implications of this fact.
+
/**
* Sole constructor (often called implicitly).
*/
@@ -130,4 +133,4 @@ public abstract class Dictionary extends Object
* @return the number of keys in the Dictionary
*/
public abstract int size();
-}
+} // class Dictionary