diff options
author | Paul Fisher <rao@gnu.org> | 2000-03-16 23:51:17 +0000 |
---|---|---|
committer | Paul Fisher <rao@gnu.org> | 2000-03-16 23:51:17 +0000 |
commit | 088ca9d4d3cdfb8cbecc80b15dccd148bd49e2b4 (patch) | |
tree | dcaf5670a42071567c0c276832414b8f6a031884 /gnu | |
parent | 219607785613483dd1c41f5e37a3028c0f6e2271 (diff) | |
download | classpath-088ca9d4d3cdfb8cbecc80b15dccd148bd49e2b4.tar.gz |
Change license to libgcc-like terms.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/java/io/ClassLoaderObjectInputStream.java | 47 | ||||
-rw-r--r-- | gnu/java/io/EncodingManager.java | 44 | ||||
-rw-r--r-- | gnu/java/io/NullOutputStream.java | 42 | ||||
-rw-r--r-- | gnu/java/io/ObjectIdentityWrapper.java | 45 | ||||
-rw-r--r-- | gnu/java/io/decode/Decoder.java | 44 | ||||
-rw-r--r-- | gnu/java/io/decode/Decoder8859_1.java | 44 | ||||
-rw-r--r-- | gnu/java/io/decode/Decoder8859_2.java | 44 | ||||
-rw-r--r-- | gnu/java/io/decode/Decoder8859_3.java | 44 | ||||
-rw-r--r-- | gnu/java/io/decode/Decoder8859_4.java | 44 | ||||
-rw-r--r-- | gnu/java/io/decode/Decoder8859_5.java | 44 | ||||
-rw-r--r-- | gnu/java/io/decode/DecoderEightBitLookup.java | 44 | ||||
-rw-r--r-- | gnu/java/io/decode/DecoderUTF8.java | 44 | ||||
-rw-r--r-- | gnu/java/io/encode/Encoder.java | 44 | ||||
-rw-r--r-- | gnu/java/io/encode/Encoder8859_1.java | 44 | ||||
-rw-r--r-- | gnu/java/io/encode/Encoder8859_2.java | 44 | ||||
-rw-r--r-- | gnu/java/io/encode/Encoder8859_3.java | 44 | ||||
-rw-r--r-- | gnu/java/io/encode/Encoder8859_4.java | 44 | ||||
-rw-r--r-- | gnu/java/io/encode/Encoder8859_5.java | 44 | ||||
-rw-r--r-- | gnu/java/io/encode/EncoderEightBitLookup.java | 44 | ||||
-rw-r--r-- | gnu/java/io/encode/EncoderUTF8.java | 44 |
20 files changed, 503 insertions, 379 deletions
diff --git a/gnu/java/io/ClassLoaderObjectInputStream.java b/gnu/java/io/ClassLoaderObjectInputStream.java index 3211f649c..76e1f058f 100644 --- a/gnu/java/io/ClassLoaderObjectInputStream.java +++ b/gnu/java/io/ClassLoaderObjectInputStream.java @@ -1,22 +1,29 @@ -/* - * gnu.java.io.ClassLoaderObjectInputStream: part of the Java Class Libraries project. - * Copyright (C) 1998 Free Software Foundation - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library 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 - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ +/* gnu.java.io.ClassLoaderObjectInputStream + 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. */ + package gnu.java.io; @@ -49,4 +56,4 @@ public class ClassLoaderObjectInputStream extends ObjectInputStream { public Class resolveClass(String name) throws IOException, ClassNotFoundException { return myClassLoader.loadClass(name); } -}
\ No newline at end of file +} diff --git a/gnu/java/io/EncodingManager.java b/gnu/java/io/EncodingManager.java index 1c2078329..91702ff4f 100644 --- a/gnu/java/io/EncodingManager.java +++ b/gnu/java/io/EncodingManager.java @@ -1,23 +1,29 @@ -/************************************************************************* /* EncodingManager.java -- Manages character encoding translators -/* -/* Copyright (c) 1998 Free Software Foundation, Inc. -/* Written by Aaron M. Renn (arenn@urbanophile.com) -/* -/* This library is free software; you can redistribute it and/or modify -/* it under the terms of the GNU Library General Public License as published -/* by the Free Software Foundation, either version 2 of the License, or -/* (at your option) any later verion. -/* -/* This library 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 Library General Public License for more details. -/* -/* You should have received a copy of the GNU Library General Public License -/* along with this library; if not, write to the Free Software Foundation -/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA -/*************************************************************************/ + Copyright (C) 1998, 1999 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. */ + package gnu.java.io; diff --git a/gnu/java/io/NullOutputStream.java b/gnu/java/io/NullOutputStream.java index 82c81976c..caf8ade2f 100644 --- a/gnu/java/io/NullOutputStream.java +++ b/gnu/java/io/NullOutputStream.java @@ -1,21 +1,29 @@ -/************************************************************************* /* NullOutputStream.java -- OutputStream that does absolutely nothing -/* -/* Copyright (c) 1998 by Free Software Foundation, Inc. -/* -/* This program is free software; you can redistribute it and/or modify -/* it under the terms of the GNU Library General Public License as published -/* by the Free Software Foundation, version 2. (see COPYING.LIB) -/* -/* This program 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 this program; if not, write to the Free Software Foundation -/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA -/*************************************************************************/ + 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. */ + package gnu.java.io; diff --git a/gnu/java/io/ObjectIdentityWrapper.java b/gnu/java/io/ObjectIdentityWrapper.java index 973ec832f..f06e2057e 100644 --- a/gnu/java/io/ObjectIdentityWrapper.java +++ b/gnu/java/io/ObjectIdentityWrapper.java @@ -1,23 +1,30 @@ -/************************************************************************* /* ObjectIdentityWrapper.java -- Wrapper class used to override equals() -/* and hashCode() to be as discriminating -/* as possible -/* -/* Copyright (c) 1998 by Free Software Foundation, Inc. -/* -/* This program is free software; you can redistribute it and/or modify -/* it under the terms of the GNU Library General Public License as published -/* by the Free Software Foundation, version 2. (see COPYING.LIB) -/* -/* This program 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 this program; if not, write to the Free Software Foundation -/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA -/*************************************************************************/ + and hashCode() to be as discriminating as possible + 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. */ + package gnu.java.io; diff --git a/gnu/java/io/decode/Decoder.java b/gnu/java/io/decode/Decoder.java index 62657e570..db8c63c84 100644 --- a/gnu/java/io/decode/Decoder.java +++ b/gnu/java/io/decode/Decoder.java @@ -1,23 +1,29 @@ -/************************************************************************* /* Decoder.java -- Base class for byte->char decoders -/* -/* Copyright (c) 1998 Free Software Foundation, Inc. -/* Written by Aaron M. Renn (arenn@urbanophile.com) -/* -/* This library is free software; you can redistribute it and/or modify -/* it under the terms of the GNU Library General Public License as published -/* by the Free Software Foundation, either version 2 of the License, or -/* (at your option) any later verion. -/* -/* This library 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 Library General Public License for more details. -/* -/* You should have received a copy of the GNU Library General Public License -/* along with this library; if not, write to the Free Software Foundation -/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA -/*************************************************************************/ + 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. */ + package gnu.java.io.decode; diff --git a/gnu/java/io/decode/Decoder8859_1.java b/gnu/java/io/decode/Decoder8859_1.java index 61b188a9a..3cae10304 100644 --- a/gnu/java/io/decode/Decoder8859_1.java +++ b/gnu/java/io/decode/Decoder8859_1.java @@ -1,23 +1,29 @@ -/************************************************************************* /* Decoder8859_1.java -- Decoder for ISO-Latin-1 Character set -/* -/* Copyright (c) 1998 Free Software Foundation, Inc. -/* Written by Aaron M. Renn (arenn@urbanophile.com) -/* -/* This library is free software; you can redistribute it and/or modify -/* it under the terms of the GNU Library General Public License as published -/* by the Free Software Foundation, either version 2 of the License, or -/* (at your option) any later verion. -/* -/* This library 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 Library General Public License for more details. -/* -/* You should have received a copy of the GNU Library General Public License -/* along with this library; if not, write to the Free Software Foundation -/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA -/*************************************************************************/ + 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. */ + package gnu.java.io.decode; diff --git a/gnu/java/io/decode/Decoder8859_2.java b/gnu/java/io/decode/Decoder8859_2.java index eefe3d7ef..153f3bc0b 100644 --- a/gnu/java/io/decode/Decoder8859_2.java +++ b/gnu/java/io/decode/Decoder8859_2.java @@ -1,23 +1,29 @@ -/************************************************************************* /* Decoder8859_2.java -- Decoder for ISO-Latin-2 Character set -/* -/* Copyright (c) 1998 Free Software Foundation, Inc. -/* Written by Aaron M. Renn (arenn@urbanophile.com) -/* -/* This library is free software; you can redistribute it and/or modify -/* it under the terms of the GNU Library General Public License as published -/* by the Free Software Foundation, either version 2 of the License, or -/* (at your option) any later verion. -/* -/* This library 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 Library General Public License for more details. -/* -/* You should have received a copy of the GNU Library General Public License -/* along with this library; if not, write to the Free Software Foundation -/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA -/*************************************************************************/ + 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. */ + package gnu.java.io.decode; diff --git a/gnu/java/io/decode/Decoder8859_3.java b/gnu/java/io/decode/Decoder8859_3.java index 840f77b51..11eac0e21 100644 --- a/gnu/java/io/decode/Decoder8859_3.java +++ b/gnu/java/io/decode/Decoder8859_3.java @@ -1,23 +1,29 @@ -/************************************************************************* /* Decoder8859_3.java -- Decoder for ISO-Latin-3 Character set -/* -/* Copyright (c) 1998 Free Software Foundation, Inc. -/* Written by Aaron M. Renn (arenn@urbanophile.com) -/* -/* This library is free software; you can redistribute it and/or modify -/* it under the terms of the GNU Library General Public License as published -/* by the Free Software Foundation, either version 2 of the License, or -/* (at your option) any later verion. -/* -/* This library 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 Library General Public License for more details. -/* -/* You should have received a copy of the GNU Library General Public License -/* along with this library; if not, write to the Free Software Foundation -/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA -/*************************************************************************/ + 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. */ + package gnu.java.io.decode; diff --git a/gnu/java/io/decode/Decoder8859_4.java b/gnu/java/io/decode/Decoder8859_4.java index 7f98ece17..851e83600 100644 --- a/gnu/java/io/decode/Decoder8859_4.java +++ b/gnu/java/io/decode/Decoder8859_4.java @@ -1,23 +1,29 @@ -/************************************************************************* /* Decoder8859_4.java -- Decoder for ISO-Latin-4 Character set -/* -/* Copyright (c) 1998 Free Software Foundation, Inc. -/* Written by Aaron M. Renn (arenn@urbanophile.com) -/* -/* This library is free software; you can redistribute it and/or modify -/* it under the terms of the GNU Library General Public License as published -/* by the Free Software Foundation, either version 2 of the License, or -/* (at your option) any later verion. -/* -/* This library 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 Library General Public License for more details. -/* -/* You should have received a copy of the GNU Library General Public License -/* along with this library; if not, write to the Free Software Foundation -/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA -/*************************************************************************/ + 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. */ + package gnu.java.io.decode; diff --git a/gnu/java/io/decode/Decoder8859_5.java b/gnu/java/io/decode/Decoder8859_5.java index 775e63bf0..4f5b03bc5 100644 --- a/gnu/java/io/decode/Decoder8859_5.java +++ b/gnu/java/io/decode/Decoder8859_5.java @@ -1,23 +1,29 @@ -/************************************************************************* /* Decoder8859_5.java -- Decoder for ISO-Latin-5 Character set -/* -/* Copyright (c) 1998 Free Software Foundation, Inc. -/* Written by Aaron M. Renn (arenn@urbanophile.com) -/* -/* This library is free software; you can redistribute it and/or modify -/* it under the terms of the GNU Library General Public License as published -/* by the Free Software Foundation, either version 2 of the License, or -/* (at your option) any later verion. -/* -/* This library 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 Library General Public License for more details. -/* -/* You should have received a copy of the GNU Library General Public License -/* along with this library; if not, write to the Free Software Foundation -/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA -/*************************************************************************/ + 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. */ + package gnu.java.io.decode; diff --git a/gnu/java/io/decode/DecoderEightBitLookup.java b/gnu/java/io/decode/DecoderEightBitLookup.java index 1bb98738c..b9776e581 100644 --- a/gnu/java/io/decode/DecoderEightBitLookup.java +++ b/gnu/java/io/decode/DecoderEightBitLookup.java @@ -1,23 +1,29 @@ -/************************************************************************* /* DecoderEightBitLookup.java -- Decodes eight-bit encodings -/* -/* Copyright (c) 1998 Free Software Foundation, Inc. -/* Written by Aaron M. Renn (arenn@urbanophile.com) -/* -/* This library is free software; you can redistribute it and/or modify -/* it under the terms of the GNU Library General Public License as published -/* by the Free Software Foundation, either version 2 of the License, or -/* (at your option) any later verion. -/* -/* This library 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 Library General Public License for more details. -/* -/* You should have received a copy of the GNU Library General Public License -/* along with this library; if not, write to the Free Software Foundation -/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA -/*************************************************************************/ + 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. */ + package gnu.java.io.decode; diff --git a/gnu/java/io/decode/DecoderUTF8.java b/gnu/java/io/decode/DecoderUTF8.java index d87f711e4..efcb3a0f1 100644 --- a/gnu/java/io/decode/DecoderUTF8.java +++ b/gnu/java/io/decode/DecoderUTF8.java @@ -1,23 +1,29 @@ -/************************************************************************* /* DecoderUTF8.java -- Decoder for the UTF-8 character encoding. -/* -/* Copyright (c) 1998 Free Software Foundation, Inc. -/* Written by Aaron M. Renn (arenn@urbanophile.com) -/* -/* This library is free software; you can redistribute it and/or modify -/* it under the terms of the GNU Library General Public License as published -/* by the Free Software Foundation, either version 2 of the License, or -/* (at your option) any later verion. -/* -/* This library 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 Library General Public License for more details. -/* -/* You should have received a copy of the GNU Library General Public License -/* along with this library; if not, write to the Free Software Foundation -/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA -/*************************************************************************/ + 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. */ + package gnu.java.io.decode; diff --git a/gnu/java/io/encode/Encoder.java b/gnu/java/io/encode/Encoder.java index 9f10e35e8..515231cfd 100644 --- a/gnu/java/io/encode/Encoder.java +++ b/gnu/java/io/encode/Encoder.java @@ -1,23 +1,29 @@ -/************************************************************************* /* Encoder.java -- Base class for char->byte encoders -/* -/* Copyright (c) 1998 Free Software Foundation, Inc. -/* Written by Aaron M. Renn (arenn@urbanophile.com) -/* -/* This library is free software; you can redistribute it and/or modify -/* it under the terms of the GNU Library General Public License as published -/* by the Free Software Foundation, either version 2 of the License, or -/* (at your option) any later verion. -/* -/* This library 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 Library General Public License for more details. -/* -/* You should have received a copy of the GNU Library General Public License -/* along with this library; if not, write to the Free Software Foundation -/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA -/*************************************************************************/ + 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. */ + package gnu.java.io.encode; diff --git a/gnu/java/io/encode/Encoder8859_1.java b/gnu/java/io/encode/Encoder8859_1.java index 76ba599e3..64dfd8961 100644 --- a/gnu/java/io/encode/Encoder8859_1.java +++ b/gnu/java/io/encode/Encoder8859_1.java @@ -1,23 +1,29 @@ -/************************************************************************* /* Encoder8859_1.java -- Encoder for ISO-Latin-1 Character set -/* -/* Copyright (c) 1998 Free Software Foundation, Inc. -/* Written by Aaron M. Renn (arenn@urbanophile.com) -/* -/* This library is free software; you can redistribute it and/or modify -/* it under the terms of the GNU Library General Public License as published -/* by the Free Software Foundation, either version 2 of the License, or -/* (at your option) any later verion. -/* -/* This library 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 Library General Public License for more details. -/* -/* You should have received a copy of the GNU Library General Public License -/* along with this library; if not, write to the Free Software Foundation -/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA -/*************************************************************************/ + 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. */ + package gnu.java.io.encode; diff --git a/gnu/java/io/encode/Encoder8859_2.java b/gnu/java/io/encode/Encoder8859_2.java index 165a28d3d..b1bf69a24 100644 --- a/gnu/java/io/encode/Encoder8859_2.java +++ b/gnu/java/io/encode/Encoder8859_2.java @@ -1,23 +1,29 @@ -/************************************************************************* /* Encoder8859_2.java -- Encoder for ISO-Latin-2 Character set -/* -/* Copyright (c) 1998 Free Software Foundation, Inc. -/* Written by Aaron M. Renn (arenn@urbanophile.com) -/* -/* This library is free software; you can redistribute it and/or modify -/* it under the terms of the GNU Library General Public License as published -/* by the Free Software Foundation, either version 2 of the License, or -/* (at your option) any later verion. -/* -/* This library 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 Library General Public License for more details. -/* -/* You should have received a copy of the GNU Library General Public License -/* along with this library; if not, write to the Free Software Foundation -/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA -/*************************************************************************/ + 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. */ + package gnu.java.io.encode; diff --git a/gnu/java/io/encode/Encoder8859_3.java b/gnu/java/io/encode/Encoder8859_3.java index 0d1578c42..3280b2e60 100644 --- a/gnu/java/io/encode/Encoder8859_3.java +++ b/gnu/java/io/encode/Encoder8859_3.java @@ -1,23 +1,29 @@ -/************************************************************************* /* Encoder8859_3.java -- Encoder for ISO-Latin-3 Character set -/* -/* Copyright (c) 1998 Free Software Foundation, Inc. -/* Written by Aaron M. Renn (arenn@urbanophile.com) -/* -/* This library is free software; you can redistribute it and/or modify -/* it under the terms of the GNU Library General Public License as published -/* by the Free Software Foundation, either version 2 of the License, or -/* (at your option) any later verion. -/* -/* This library 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 Library General Public License for more details. -/* -/* You should have received a copy of the GNU Library General Public License -/* along with this library; if not, write to the Free Software Foundation -/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA -/*************************************************************************/ + 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. */ + package gnu.java.io.encode; diff --git a/gnu/java/io/encode/Encoder8859_4.java b/gnu/java/io/encode/Encoder8859_4.java index 0b9ebc662..58c003f22 100644 --- a/gnu/java/io/encode/Encoder8859_4.java +++ b/gnu/java/io/encode/Encoder8859_4.java @@ -1,23 +1,29 @@ -/************************************************************************* /* Encoder8859_4.java -- Encoder for ISO-Latin-4 Character set -/* -/* Copyright (c) 1998 Free Software Foundation, Inc. -/* Written by Aaron M. Renn (arenn@urbanophile.com) -/* -/* This library is free software; you can redistribute it and/or modify -/* it under the terms of the GNU Library General Public License as published -/* by the Free Software Foundation, either version 2 of the License, or -/* (at your option) any later verion. -/* -/* This library 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 Library General Public License for more details. -/* -/* You should have received a copy of the GNU Library General Public License -/* along with this library; if not, write to the Free Software Foundation -/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA -/*************************************************************************/ + 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. */ + package gnu.java.io.encode; diff --git a/gnu/java/io/encode/Encoder8859_5.java b/gnu/java/io/encode/Encoder8859_5.java index b7d83b177..641241fa9 100644 --- a/gnu/java/io/encode/Encoder8859_5.java +++ b/gnu/java/io/encode/Encoder8859_5.java @@ -1,23 +1,29 @@ -/************************************************************************* /* Encoder8859_5.java -- Encoder for ISO-Latin-5 Character set -/* -/* Copyright (c) 1998 Free Software Foundation, Inc. -/* Written by Aaron M. Renn (arenn@urbanophile.com) -/* -/* This library is free software; you can redistribute it and/or modify -/* it under the terms of the GNU Library General Public License as published -/* by the Free Software Foundation, either version 2 of the License, or -/* (at your option) any later verion. -/* -/* This library 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 Library General Public License for more details. -/* -/* You should have received a copy of the GNU Library General Public License -/* along with this library; if not, write to the Free Software Foundation -/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA -/*************************************************************************/ + 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. */ + package gnu.java.io.encode; diff --git a/gnu/java/io/encode/EncoderEightBitLookup.java b/gnu/java/io/encode/EncoderEightBitLookup.java index 4c82f9aba..66bea0404 100644 --- a/gnu/java/io/encode/EncoderEightBitLookup.java +++ b/gnu/java/io/encode/EncoderEightBitLookup.java @@ -1,23 +1,29 @@ -/************************************************************************* /* EncoderEightBitLookup.java -- Encodes eight-bit encodings -/* -/* Copyright (c) 1998 Free Software Foundation, Inc. -/* Written by Aaron M. Renn (arenn@urbanophile.com) -/* -/* This library is free software; you can redistribute it and/or modify -/* it under the terms of the GNU Library General Public License as published -/* by the Free Software Foundation, either version 2 of the License, or -/* (at your option) any later verion. -/* -/* This library 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 Library General Public License for more details. -/* -/* You should have received a copy of the GNU Library General Public License -/* along with this library; if not, write to the Free Software Foundation -/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA -/*************************************************************************/ + 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. */ + package gnu.java.io.encode; diff --git a/gnu/java/io/encode/EncoderUTF8.java b/gnu/java/io/encode/EncoderUTF8.java index 23465a0b3..d6488b798 100644 --- a/gnu/java/io/encode/EncoderUTF8.java +++ b/gnu/java/io/encode/EncoderUTF8.java @@ -1,23 +1,29 @@ -/************************************************************************* /* EncoderUTF8.java -- Encoding class for the UTF-8 scheme -/* -/* Copyright (c) 1998 Free Software Foundation, Inc. -/* Written by Aaron M. Renn (arenn@urbanophile.com) -/* -/* This library is free software; you can redistribute it and/or modify -/* it under the terms of the GNU Library General Public License as published -/* by the Free Software Foundation, either version 2 of the License, or -/* (at your option) any later verion. -/* -/* This library 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 Library General Public License for more details. -/* -/* You should have received a copy of the GNU Library General Public License -/* along with this library; if not, write to the Free Software Foundation -/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA -/*************************************************************************/ + 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. */ + package gnu.java.io.encode; |