summaryrefslogtreecommitdiff
path: root/java/util/Enumeration.java
diff options
context:
space:
mode:
authorBryce McKinlay <mckinlay@redhat.com>2000-10-24 10:07:48 +0000
committerBryce McKinlay <mckinlay@redhat.com>2000-10-24 10:07:48 +0000
commit7da5563bc09d46e28eadfaf72476a3427f8b43a4 (patch)
tree3cc7ff2f621b50cf18e36cc1a8886cfbbca17f7b /java/util/Enumeration.java
parentf211620ede452cec8c72d5a5fb0baab7b8e300d0 (diff)
downloadclasspath-7da5563bc09d46e28eadfaf72476a3427f8b43a4.tar.gz
2000-10-24 Bryce McKinlay <bryce@albatross.co.nz>
* java/util/*.java: Reformat all to unofficial standard coding style. No changes of substance. * java/util/jar/*.java: Ditto.
Diffstat (limited to 'java/util/Enumeration.java')
-rw-r--r--java/util/Enumeration.java48
1 files changed, 24 insertions, 24 deletions
diff --git a/java/util/Enumeration.java b/java/util/Enumeration.java
index db680436b..1960cf3aa 100644
--- a/java/util/Enumeration.java
+++ b/java/util/Enumeration.java
@@ -1,28 +1,28 @@
/* Enumeration.java -- Interface for enumerating lists of objects
Copyright (C) 1998 Free Software Foundation, Inc.
-This file is part of GNU Classpath.
-
-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
-General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
-
-As a special exception, if you link this library with other files to
-produce an executable, this library does not by itself cause the
-resulting executable to be covered by the GNU General Public License.
-This exception does not however invalidate any other reasons why the
-executable file might be covered by the GNU General Public License. */
+ This file is part of GNU Classpath.
+
+ 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
+ General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with GNU Classpath; see the file COPYING. If not, write to the
+ Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+ 02111-1307 USA.
+
+ As a special exception, if you link this library with other files to
+ produce an executable, this library does not by itself cause the
+ resulting executable to be covered by the GNU General Public License.
+ This exception does not however invalidate any other reasons why the
+ executable file might be covered by the GNU General Public License. */
package java.util;
@@ -37,8 +37,8 @@ package java.util;
* the new collections classes, for use with legacy APIs that require them, can
* be obtained by the enumeration method in class Collections.
*/
-public interface Enumeration {
-
+public interface Enumeration
+{
/**
* Tests whether there are elements remaining in the enumeration.
*