OSDN Git Service

2004-10-20 Michael Koch <konqueror@gmx.de>
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 20 Oct 2004 07:53:27 +0000 (07:53 +0000)
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 20 Oct 2004 07:53:27 +0000 (07:53 +0000)
* java/util/logging/ConsoleHandler.java,
java/util/logging/ErrorManager.java,
java/util/logging/FileHandler.java,
java/util/logging/Filter.java,
java/util/logging/Formatter.java,
java/util/logging/Handler.java,
java/util/logging/Level.java,
java/util/logging/LogManager.java,
java/util/logging/LogRecord.java,
java/util/logging/Logger.java,
java/util/logging/LoggingPermission.java,
java/util/logging/MemoryHandler.java,
java/util/logging/SimpleFormatter.java,
java/util/logging/SocketHandler.java,
java/util/logging/StreamHandler.java,
java/util/logging/XMLFormatter.java:
Standardized copyrigth header.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89322 138bc75d-0d04-0410-961f-82ee72b054a4

17 files changed:
libjava/ChangeLog
libjava/java/util/logging/ConsoleHandler.java
libjava/java/util/logging/ErrorManager.java
libjava/java/util/logging/FileHandler.java
libjava/java/util/logging/Filter.java
libjava/java/util/logging/Formatter.java
libjava/java/util/logging/Handler.java
libjava/java/util/logging/Level.java
libjava/java/util/logging/LogManager.java
libjava/java/util/logging/LogRecord.java
libjava/java/util/logging/Logger.java
libjava/java/util/logging/LoggingPermission.java
libjava/java/util/logging/MemoryHandler.java
libjava/java/util/logging/SimpleFormatter.java
libjava/java/util/logging/SocketHandler.java
libjava/java/util/logging/StreamHandler.java
libjava/java/util/logging/XMLFormatter.java

index ee5c8a4..70ec77a 100644 (file)
@@ -1,5 +1,25 @@
 2004-10-20  Michael Koch  <konqueror@gmx.de>
 
+       * java/util/logging/ConsoleHandler.java,
+       java/util/logging/ErrorManager.java,
+       java/util/logging/FileHandler.java,
+       java/util/logging/Filter.java,
+       java/util/logging/Formatter.java,
+       java/util/logging/Handler.java,
+       java/util/logging/Level.java,
+       java/util/logging/LogManager.java,
+       java/util/logging/LogRecord.java,
+       java/util/logging/Logger.java,
+       java/util/logging/LoggingPermission.java,
+       java/util/logging/MemoryHandler.java,
+       java/util/logging/SimpleFormatter.java,
+       java/util/logging/SocketHandler.java,
+       java/util/logging/StreamHandler.java,
+       java/util/logging/XMLFormatter.java:
+       Standardized copyrigth header.
+
+2004-10-20  Michael Koch  <konqueror@gmx.de>
+
        * java/security/AlgorithmParameterGenerator.java,
        java/security/AlgorithmParameters.java,
        java/security/DigestInputStream.java,
index 6d79c1d..428a97f 100644 (file)
@@ -1,7 +1,5 @@
-/* ConsoleHandler.java
-   -- a class for publishing log messages to System.err
-
-Copyright (C) 2002 Free Software Foundation, Inc.
+/* ConsoleHandler.java -- a class for publishing log messages to System.err
+   Copyright (C) 2002, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -35,9 +33,7 @@ module.  An independent module is a module which is not derived from
 or based on this library.  If you modify this library, you may extend
 this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
-exception statement from your version.
-
-*/
+exception statement from your version. */
 
 
 package java.util.logging;
index 7381a52..bb48180 100644 (file)
@@ -1,8 +1,7 @@
-/* ErrorManager.java
-   -- a class for dealing with errors that a Handler encounters
-      during logging
-
-Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+/* ErrorManager.java --
+   A class for dealing with errors that a Handler encounters
+   during logging
+   Copyright (C) 2002, 2003 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -36,9 +35,7 @@ module.  An independent module is a module which is not derived from
 or based on this library.  If you modify this library, you may extend
 this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
-exception statement from your version.
-
-*/
+exception statement from your version. */
 
 
 package java.util.logging;
index fe7afa2..6bbc23c 100644 (file)
@@ -1,7 +1,5 @@
-/* FileHandler.java
-   -- a class for publishing log messages to log files
-
-Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+/* FileHandler.java -- a class for publishing log messages to log files
+   Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -35,9 +33,8 @@ module.  An independent module is a module which is not derived from
 or based on this library.  If you modify this library, you may extend
 this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
-exception statement from your version.
+exception statement from your version. */
 
-*/
 
 package java.util.logging;
 
index fc46d09..46b6747 100644 (file)
@@ -1,8 +1,6 @@
-/* Filter.java
-   -- an interface for filters that decide whether a LogRecord should
-      be published or discarded
-
-Copyright (C) 2002 Free Software Foundation, Inc.
+/* Filter.java -- an interface for filters that decide whether a
+   LogRecord should be published or discarded
+   Copyright (C) 2002, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -36,9 +34,7 @@ module.  An independent module is a module which is not derived from
 or based on this library.  If you modify this library, you may extend
 this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
-exception statement from your version.
-
-*/
+exception statement from your version. */
 
 
 package java.util.logging;
index 8275376..0965f36 100644 (file)
@@ -1,8 +1,7 @@
-/* Formatter.java
-   -- a class for formatting log messages by localizing message texts
-      and performing substitution of parameters
-
-Copyright (C) 2002, 2004 Free Software Foundation, Inc.
+/* Formatter.java --
+   A class for formatting log messages by localizing message texts
+   and performing substitution of parameters
+   Copyright (C) 2002, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -36,9 +35,7 @@ module.  An independent module is a module which is not derived from
 or based on this library.  If you modify this library, you may extend
 this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
-exception statement from your version.
-
-*/
+exception statement from your version. */
 
 
 package java.util.logging;
index 0caeafb..f4efebb 100644 (file)
@@ -1,7 +1,5 @@
-/* Handler.java
-   -- a class for publishing log messages
-
-Copyright (C) 2002, 2004 Free Software Foundation, Inc.
+/* Handler.java -- a class for publishing log messages
+   Copyright (C) 2002, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -35,9 +33,7 @@ module.  An independent module is a module which is not derived from
 or based on this library.  If you modify this library, you may extend
 this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
-exception statement from your version.
-
-*/
+exception statement from your version. */
 
 
 package java.util.logging;
index e37f9cb..b121437 100644 (file)
@@ -33,9 +33,7 @@ module.  An independent module is a module which is not derived from
 or based on this library.  If you modify this library, you may extend
 this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
-exception statement from your version.
-
-*/
+exception statement from your version. */
 
 
 package java.util.logging;
index c77e086..85a9f4c 100644 (file)
@@ -1,8 +1,6 @@
-/* LogManager.java
-   -- a class for maintaining Loggers and managing configuration
-      properties
-
-Copyright (C) 2002 Free Software Foundation, Inc.
+/* LogManager.java -- a class for maintaining Loggers and managing
+   configuration properties
+   Copyright (C) 2002 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -36,9 +34,8 @@ module.  An independent module is a module which is not derived from
 or based on this library.  If you modify this library, you may extend
 this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
-exception statement from your version.
+exception statement from your version. */
 
-*/
 
 package java.util.logging;
 
@@ -46,14 +43,14 @@ import java.beans.PropertyChangeListener;
 import java.beans.PropertyChangeSupport;
 import java.io.IOException;
 import java.io.InputStream;
+import java.lang.ref.WeakReference;
 import java.net.URL;
 import java.util.Collections;
-import java.util.Properties;
 import java.util.Enumeration;
 import java.util.Iterator;
 import java.util.Map;
+import java.util.Properties;
 import java.util.StringTokenizer;
-import java.lang.ref.WeakReference;
 
 /**
  * The <code>LogManager</code> maintains a hierarchical namespace
index 40b2b72..58ee353 100644 (file)
@@ -1,7 +1,6 @@
-/* LogRecord.java
-   -- a class for the state associated with individual logging events
-
-Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+/* LogRecord.java --
+   A class for the state associated with individual logging events
+   Copyright (C) 2002, 2003 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -35,9 +34,7 @@ module.  An independent module is a module which is not derived from
 or based on this library.  If you modify this library, you may extend
 this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
-exception statement from your version.
-
-*/
+exception statement from your version. */
 
 
 package java.util.logging;
index b1e6ef5..99c9be9 100644 (file)
@@ -1,7 +1,5 @@
-/* Logger.java
-   -- a class for logging messages
-
-Copyright (C) 2002, 2004 Free Software Foundation, Inc.
+/* Logger.java -- a class for logging messages
+   Copyright (C) 2002, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -35,9 +33,7 @@ module.  An independent module is a module which is not derived from
 or based on this library.  If you modify this library, you may extend
 this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
-exception statement from your version.
-
-*/
+exception statement from your version. */
 
 
 package java.util.logging;
index e9b5c4a..a42d713 100644 (file)
@@ -33,9 +33,7 @@ module.  An independent module is a module which is not derived from
 or based on this library.  If you modify this library, you may extend
 this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
-exception statement from your version.
-
-*/
+exception statement from your version. */
 
 
 package java.util.logging;
index 3c18b52..4fa850e 100644 (file)
@@ -1,7 +1,5 @@
-/* MemoryHandler.java
-   -- a class for buffering log messages in a memory buffer
-
-Copyright (C) 2002 Free Software Foundation, Inc.
+/* MemoryHandler.java -- a class for buffering log messages in a memory buffer
+   Copyright (C) 2002, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
index 023e9a7..c983489 100644 (file)
@@ -1,7 +1,6 @@
-/* SimpleFormatter.java
-   -- a class for formatting log records into short human-readable messages
-
-Copyright (C) 2002, 2004 Free Software Foundation, Inc.
+/* SimpleFormatter.java --
+   A class for formatting log records into short human-readable messages
+   Copyright (C) 2002, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -35,9 +34,7 @@ module.  An independent module is a module which is not derived from
 or based on this library.  If you modify this library, you may extend
 this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
-exception statement from your version.
-
-*/
+exception statement from your version. */
 
 
 package java.util.logging;
index d4fc6e6..2e6c96c 100644 (file)
@@ -1,7 +1,5 @@
-/* SocketHandler.java
-   -- a class for publishing log messages to network sockets
-
-Copyright (C) 2002 Free Software Foundation, Inc.
+/* SocketHandler.java -- a class for publishing log messages to network sockets
+   Copyright (C) 2002 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -35,9 +33,7 @@ module.  An independent module is a module which is not derived from
 or based on this library.  If you modify this library, you may extend
 this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
-exception statement from your version.
-
-*/
+exception statement from your version. */
 
 
 package java.util.logging;
index add2d3a..c7b50e4 100644 (file)
@@ -1,7 +1,6 @@
-/* StreamHandler.java
-   -- a class for publishing log messages to instances of java.io.OutputStream
-
-Copyright (C) 2002 Free Software Foundation, Inc.
+/* StreamHandler.java --
+   A class for publishing log messages to instances of java.io.OutputStream
+   Copyright (C) 2002 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -35,9 +34,7 @@ module.  An independent module is a module which is not derived from
 or based on this library.  If you modify this library, you may extend
 this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
-exception statement from your version.
-
-*/
+exception statement from your version. */
 
 
 package java.util.logging;
index d864717..86a1c0c 100644 (file)
@@ -1,7 +1,6 @@
-/* XMLFormatter.java
-   -- a class for formatting log messages into a standard XML format
-
-Copyright (C) 2002, 2004 Free Software Foundation, Inc.
+/* XMLFormatter.java --
+   A class for formatting log messages into a standard XML format
+   Copyright (C) 2002, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -35,9 +34,7 @@ module.  An independent module is a module which is not derived from
 or based on this library.  If you modify this library, you may extend
 this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
-exception statement from your version.
-
-*/
+exception statement from your version. */
 
 
 package java.util.logging;