aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/util/Enumeration.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/util/Enumeration.java')
-rw-r--r--libjava/java/util/Enumeration.java15
1 files changed, 10 insertions, 5 deletions
diff --git a/libjava/java/util/Enumeration.java b/libjava/java/util/Enumeration.java
index 66624bd..5bcfbee 100644
--- a/libjava/java/util/Enumeration.java
+++ b/libjava/java/util/Enumeration.java
@@ -42,7 +42,12 @@ package java.util;
* be obtained by the enumeration method in class Collections.
*
* @author Warren Levy <warrenl@cygnus.com>
- * @date August 25, 1998.
+ * @author Eric Blake <ebb9@email.byu.edu>
+ * @see Iterator
+ * @see Hashtable
+ * @see Vector
+ * @since 1.0
+ * @status updated to 1.4
*/
public interface Enumeration
{
@@ -50,8 +55,8 @@ public interface Enumeration
* Tests whether there are elements remaining in the enumeration.
*
* @return true if there is at least one more element in the enumeration,
- * that is, if the next call to nextElement will not throw a
- * NoSuchElementException.
+ * that is, if the next call to nextElement will not throw a
+ * NoSuchElementException.
*/
boolean hasMoreElements();
@@ -59,7 +64,7 @@ public interface Enumeration
* Obtain the next element in the enumeration.
*
* @return the next element in the enumeration
- * @exception NoSuchElementException if there are no more elements
+ * @throws NoSuchElementException if there are no more elements
*/
- Object nextElement() throws NoSuchElementException;
+ Object nextElement();
}