Commit 724c2517 by Michael Koch Committed by Michael Koch

Timestamp.java, [...]: Reorganized imports and fixed copyright headers.

2004-10-20  Michael Koch  <konqueror@gmx.de>

	* java/sql/Timestamp.java,
	java/text/AttributedCharacterIterator.java,
	java/text/AttributedString.java,
	java/util/zip/CheckedOutputStream.java,
	java/util/zip/DeflaterOutputStream.java,
	java/util/zip/ZipFile.java,
	javax/crypto/Cipher.java,
	javax/crypto/ExemptionMechanismException.java,
	javax/crypto/SecretKey.java,
	javax/crypto/SecretKeyFactory.java,
	javax/naming/directory/ModificationItem.java,
	javax/naming/directory/SearchControls.java,
	javax/naming/event/NamingListener.java,
	javax/naming/ldap/Control.java,
	javax/naming/ldap/ExtendedResponse.java,
	javax/net/ssl/SSLSocketFactory.java:
	Reorganized imports and fixed copyright headers.

From-SVN: r89324
parent aa75e737
2004-10-20 Michael Koch <konqueror@gmx.de> 2004-10-20 Michael Koch <konqueror@gmx.de>
* java/sql/Timestamp.java,
java/text/AttributedCharacterIterator.java,
java/text/AttributedString.java,
java/util/zip/CheckedOutputStream.java,
java/util/zip/DeflaterOutputStream.java,
java/util/zip/ZipFile.java,
javax/crypto/Cipher.java,
javax/crypto/ExemptionMechanismException.java,
javax/crypto/SecretKey.java,
javax/crypto/SecretKeyFactory.java,
javax/naming/directory/ModificationItem.java,
javax/naming/directory/SearchControls.java,
javax/naming/event/NamingListener.java,
javax/naming/ldap/Control.java,
javax/naming/ldap/ExtendedResponse.java,
javax/net/ssl/SSLSocketFactory.java:
Reorganized imports and fixed copyright headers.
2004-10-20 Michael Koch <konqueror@gmx.de>
* java/util/logging/ConsoleHandler.java, * java/util/logging/ConsoleHandler.java,
java/util/logging/ErrorManager.java, java/util/logging/ErrorManager.java,
java/util/logging/FileHandler.java, java/util/logging/FileHandler.java,
......
/* Time.java -- Wrapper around java.util.Date /* Time.java -- Wrapper around java.util.Date
Copyright (C) 1999, 2000, 2003 Free Software Foundation, Inc. Copyright (C) 1999, 2000, 2003, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -38,8 +38,8 @@ exception statement from your version. */ ...@@ -38,8 +38,8 @@ exception statement from your version. */
package java.sql; package java.sql;
import java.text.ParseException;
import java.text.DecimalFormat; import java.text.DecimalFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat; import java.text.SimpleDateFormat;
/** /**
......
...@@ -38,10 +38,10 @@ exception statement from your version. */ ...@@ -38,10 +38,10 @@ exception statement from your version. */
package java.text; package java.text;
import java.io.Serializable;
import java.io.InvalidObjectException; import java.io.InvalidObjectException;
import java.util.Set; import java.io.Serializable;
import java.util.Map; import java.util.Map;
import java.util.Set;
/** /**
* This interface extends the <code>CharacterIterator</code> interface * This interface extends the <code>CharacterIterator</code> interface
......
...@@ -38,8 +38,8 @@ exception statement from your version. */ ...@@ -38,8 +38,8 @@ exception statement from your version. */
package java.text; package java.text;
import java.util.Arrays;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap; import java.util.HashMap;
import java.util.Hashtable; import java.util.Hashtable;
import java.util.Iterator; import java.util.Iterator;
......
...@@ -35,11 +35,12 @@ this exception to your version of the library, but you are not ...@@ -35,11 +35,12 @@ 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 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.zip; package java.util.zip;
import java.io.FilterOutputStream; import java.io.FilterOutputStream;
import java.io.OutputStream;
import java.io.IOException; import java.io.IOException;
import java.io.OutputStream;
/* Written using on-line Java Platform 1.2 API Specification /* Written using on-line Java Platform 1.2 API Specification
* and JCL book. * and JCL book.
......
...@@ -35,11 +35,12 @@ this exception to your version of the library, but you are not ...@@ -35,11 +35,12 @@ 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 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.zip; package java.util.zip;
import java.io.FilterOutputStream; import java.io.FilterOutputStream;
import java.io.OutputStream;
import java.io.IOException; import java.io.IOException;
import java.io.OutputStream;
/* Written using on-line Java Platform 1.2 API Specification /* Written using on-line Java Platform 1.2 API Specification
* and JCL book. * and JCL book.
......
...@@ -35,19 +35,19 @@ this exception to your version of the library, but you are not ...@@ -35,19 +35,19 @@ 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 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.zip; package java.util.zip;
import java.io.BufferedInputStream; import java.io.BufferedInputStream;
import java.io.DataInput; import java.io.DataInput;
import java.io.EOFException;
import java.io.File; import java.io.File;
import java.io.InputStream; import java.io.InputStream;
import java.io.IOException; import java.io.IOException;
import java.io.EOFException;
import java.io.RandomAccessFile; import java.io.RandomAccessFile;
import java.util.Enumeration; import java.util.Enumeration;
import java.util.HashMap; import java.util.HashMap;
import java.util.Iterator; import java.util.Iterator;
import java.util.NoSuchElementException;
/** /**
* This class represents a Zip archive. You can ask for the contained * This class represents a Zip archive. You can ask for the contained
......
...@@ -51,7 +51,6 @@ import java.security.cert.Certificate; ...@@ -51,7 +51,6 @@ import java.security.cert.Certificate;
import java.security.cert.X509Certificate; import java.security.cert.X509Certificate;
import java.security.spec.AlgorithmParameterSpec; import java.security.spec.AlgorithmParameterSpec;
import java.util.Enumeration;
import java.util.StringTokenizer; import java.util.StringTokenizer;
import gnu.java.security.Engine; import gnu.java.security.Engine;
......
/* ExemptionMechanismException -- An error in an exemption mechanism. /* ExemptionMechanismException -- An error in an exemption mechanism.
Copyright (C) 2004 Free Software Foundation, Inc. Copyright (C) 2004 Free Software Foundation, Inc.
This file is a part of GNU Classpath. This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify 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 it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at the Free Software Foundation; either version 2, or (at your option)
your option) any later version. any later version.
GNU Classpath is distributed in the hope that it will be useful, but GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details. General Public License for more details.
You should have received a copy of the GNU General Public License along You should have received a copy of the GNU General Public License
with GNU Classpath; if not, write to the along with GNU Classpath; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
Free Software Foundation, Inc., 02111-1307 USA.
59 Temple Place, Suite 330,
Boston, MA 02111-1307
USA
Linking this library statically or dynamically with other modules is Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and making a combined work based on this library. Thus, the terms and
...@@ -29,14 +26,14 @@ combination. ...@@ -29,14 +26,14 @@ combination.
As a special exception, the copyright holders of this library give you As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under terms modules, and to copy and distribute the resulting executable under
of your choice, provided that you also meet, for each linked independent terms of your choice, provided that you also meet, for each linked
module, the terms and conditions of the license of that module. An independent module, the terms and conditions of the license of that
independent module is a module which is not derived from or based on module. An independent module is a module which is not derived from
this library. If you modify this library, you may extend this exception or based on this library. If you modify this library, you may extend
to your version of the library, but you are not obligated to do so. If this exception to your version of the library, but you are not
you do not wish to do so, delete this exception statement from your obligated to do so. If you do not wish to do so, delete this
version. */ exception statement from your version. */
package javax.crypto; package javax.crypto;
......
/* SecretKey.java -- A key for symmetric cryptography. /* SecretKey.java -- A key for symmetric cryptography.
Copyright (C) 2004 Free Software Foundation, Inc. Copyright (C) 2004 Free Software Foundation, Inc.
This file is a part of GNU Classpath. This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify 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 it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at the Free Software Foundation; either version 2, or (at your option)
your option) any later version. any later version.
GNU Classpath is distributed in the hope that it will be useful, but GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details. General Public License for more details.
You should have received a copy of the GNU General Public License along You should have received a copy of the GNU General Public License
with GNU Classpath; if not, write to the along with GNU Classpath; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
Free Software Foundation, Inc., 02111-1307 USA.
59 Temple Place, Suite 330,
Boston, MA 02111-1307
USA
Linking this library statically or dynamically with other modules is Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and making a combined work based on this library. Thus, the terms and
...@@ -29,14 +26,14 @@ combination. ...@@ -29,14 +26,14 @@ combination.
As a special exception, the copyright holders of this library give you As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under terms modules, and to copy and distribute the resulting executable under
of your choice, provided that you also meet, for each linked independent terms of your choice, provided that you also meet, for each linked
module, the terms and conditions of the license of that module. An independent module, the terms and conditions of the license of that
independent module is a module which is not derived from or based on module. An independent module is a module which is not derived from
this library. If you modify this library, you may extend this exception or based on this library. If you modify this library, you may extend
to your version of the library, but you are not obligated to do so. If this exception to your version of the library, but you are not
you do not wish to do so, delete this exception statement from your obligated to do so. If you do not wish to do so, delete this
version. */ exception statement from your version. */
package javax.crypto; package javax.crypto;
......
...@@ -44,7 +44,6 @@ import java.security.InvalidKeyException; ...@@ -44,7 +44,6 @@ import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException; import java.security.NoSuchAlgorithmException;
import java.security.NoSuchProviderException; import java.security.NoSuchProviderException;
import java.security.Provider; import java.security.Provider;
import java.security.SecureRandom;
import java.security.Security; import java.security.Security;
import java.security.spec.KeySpec; import java.security.spec.KeySpec;
import java.security.spec.InvalidKeySpecException; import java.security.spec.InvalidKeySpecException;
......
...@@ -37,6 +37,7 @@ exception statement from your version. */ ...@@ -37,6 +37,7 @@ exception statement from your version. */
package javax.naming.directory; package javax.naming.directory;
import java.io.Serializable; import java.io.Serializable;
/** /**
......
...@@ -37,6 +37,7 @@ exception statement from your version. */ ...@@ -37,6 +37,7 @@ exception statement from your version. */
package javax.naming.directory; package javax.naming.directory;
import java.io.Serializable; import java.io.Serializable;
/** /**
......
...@@ -37,6 +37,7 @@ exception statement from your version. */ ...@@ -37,6 +37,7 @@ exception statement from your version. */
package javax.naming.event; package javax.naming.event;
import java.util.EventListener; import java.util.EventListener;
/** /**
......
...@@ -37,6 +37,7 @@ exception statement from your version. */ ...@@ -37,6 +37,7 @@ exception statement from your version. */
package javax.naming.ldap; package javax.naming.ldap;
import java.io.Serializable; import java.io.Serializable;
/** /**
......
...@@ -37,6 +37,7 @@ exception statement from your version. */ ...@@ -37,6 +37,7 @@ exception statement from your version. */
package javax.naming.ldap; package javax.naming.ldap;
import java.io.Serializable; import java.io.Serializable;
/** /**
......
...@@ -40,9 +40,7 @@ package javax.net.ssl; ...@@ -40,9 +40,7 @@ package javax.net.ssl;
import java.io.IOException; import java.io.IOException;
import java.net.Socket; import java.net.Socket;
import java.security.AccessController;
import java.security.KeyStore; import java.security.KeyStore;
import java.security.PrivilegedAction;
import java.security.Security; import java.security.Security;
import javax.net.SocketFactory; import javax.net.SocketFactory;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment