diff options
Diffstat (limited to 'libjava/java/nio')
-rw-r--r-- | libjava/java/nio/ByteBufferHelper.java | 4 | ||||
-rw-r--r-- | libjava/java/nio/ByteBufferImpl.java | 4 | ||||
-rw-r--r-- | libjava/java/nio/DirectByteBufferImpl.java | 4 | ||||
-rw-r--r-- | libjava/java/nio/DoubleBufferImpl.java | 4 | ||||
-rw-r--r-- | libjava/java/nio/FloatBufferImpl.java | 4 | ||||
-rw-r--r-- | libjava/java/nio/IntBufferImpl.java | 4 | ||||
-rw-r--r-- | libjava/java/nio/LongBufferImpl.java | 4 | ||||
-rw-r--r-- | libjava/java/nio/ShortBufferImpl.java | 4 | ||||
-rw-r--r-- | libjava/java/nio/channels/Channel.java | 4 | ||||
-rw-r--r-- | libjava/java/nio/channels/IllegalBlockingModeException.java | 4 | ||||
-rw-r--r-- | libjava/java/nio/charset/spi/CharsetProvider.java | 2 |
11 files changed, 21 insertions, 21 deletions
diff --git a/libjava/java/nio/ByteBufferHelper.java b/libjava/java/nio/ByteBufferHelper.java index cbc1f110a6f..799d41c2a04 100644 --- a/libjava/java/nio/ByteBufferHelper.java +++ b/libjava/java/nio/ByteBufferHelper.java @@ -1,5 +1,5 @@ /* ByteBufferImpl.java -- - Copyright (C) 2003, 2004 Free Software Foundation, Inc. + Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -38,7 +38,7 @@ exception statement from your version. */ package java.nio; /** - * @author Michael Koch <konqueror@gmx.de> + * @author Michael Koch (konqueror@gmx.de) */ final class ByteBufferHelper { diff --git a/libjava/java/nio/ByteBufferImpl.java b/libjava/java/nio/ByteBufferImpl.java index 7734dbf12cd..b1e6b1f50a7 100644 --- a/libjava/java/nio/ByteBufferImpl.java +++ b/libjava/java/nio/ByteBufferImpl.java @@ -1,5 +1,5 @@ /* ByteBufferImpl.java -- - Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. + Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -178,7 +178,7 @@ final class ByteBufferImpl extends ByteBuffer } /** - * Absolute put method. Writes <code>value</value> to position + * Absolute put method. Writes <code>value</code> to position * <code>index</code> in the buffer. * * @exception IndexOutOfBoundsException If index is negative or not smaller diff --git a/libjava/java/nio/DirectByteBufferImpl.java b/libjava/java/nio/DirectByteBufferImpl.java index c272bacbf72..17f8dfa7a00 100644 --- a/libjava/java/nio/DirectByteBufferImpl.java +++ b/libjava/java/nio/DirectByteBufferImpl.java @@ -56,7 +56,7 @@ abstract class DirectByteBufferImpl extends ByteBuffer */ private final Object owner; - final static class ReadOnly extends DirectByteBufferImpl + static final class ReadOnly extends DirectByteBufferImpl { ReadOnly(Object owner, RawData address, int capacity, int limit, @@ -81,7 +81,7 @@ abstract class DirectByteBufferImpl extends ByteBuffer } } - final static class ReadWrite extends DirectByteBufferImpl + static final class ReadWrite extends DirectByteBufferImpl { ReadWrite(int capacity) { diff --git a/libjava/java/nio/DoubleBufferImpl.java b/libjava/java/nio/DoubleBufferImpl.java index 504ee8d61b0..2b5f32c4325 100644 --- a/libjava/java/nio/DoubleBufferImpl.java +++ b/libjava/java/nio/DoubleBufferImpl.java @@ -1,5 +1,5 @@ /* DoubleBufferImpl.java -- - Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. + Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -146,7 +146,7 @@ final class DoubleBufferImpl extends DoubleBuffer } /** - * Absolute put method. Writes <code>value</value> to position + * Absolute put method. Writes <code>value</code> to position * <code>index</code> in the buffer. * * @exception IndexOutOfBoundsException If index is negative or not smaller diff --git a/libjava/java/nio/FloatBufferImpl.java b/libjava/java/nio/FloatBufferImpl.java index a9eb7c1de8a..aae5efc7d9f 100644 --- a/libjava/java/nio/FloatBufferImpl.java +++ b/libjava/java/nio/FloatBufferImpl.java @@ -1,5 +1,5 @@ /* FloatBufferImpl.java -- - Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. + Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -146,7 +146,7 @@ final class FloatBufferImpl extends FloatBuffer } /** - * Absolute put method. Writes <code>value</value> to position + * Absolute put method. Writes <code>value</code> to position * <code>index</code> in the buffer. * * @exception IndexOutOfBoundsException If index is negative or not smaller diff --git a/libjava/java/nio/IntBufferImpl.java b/libjava/java/nio/IntBufferImpl.java index f68dd92fa04..966fd488222 100644 --- a/libjava/java/nio/IntBufferImpl.java +++ b/libjava/java/nio/IntBufferImpl.java @@ -1,5 +1,5 @@ /* IntBufferImpl.java -- - Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. + Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -146,7 +146,7 @@ final class IntBufferImpl extends IntBuffer } /** - * Absolute put method. Writes <code>value</value> to position + * Absolute put method. Writes <code>value</code> to position * <code>index</code> in the buffer. * * @exception IndexOutOfBoundsException If index is negative or not smaller diff --git a/libjava/java/nio/LongBufferImpl.java b/libjava/java/nio/LongBufferImpl.java index df720eec62c..b7497fa3d92 100644 --- a/libjava/java/nio/LongBufferImpl.java +++ b/libjava/java/nio/LongBufferImpl.java @@ -1,5 +1,5 @@ /* LongBufferImpl.java -- - Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. + Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -146,7 +146,7 @@ final class LongBufferImpl extends LongBuffer } /** - * Absolute put method. Writes <code>value</value> to position + * Absolute put method. Writes <code>value</code> to position * <code>index</code> in the buffer. * * @exception IndexOutOfBoundsException If index is negative or not smaller diff --git a/libjava/java/nio/ShortBufferImpl.java b/libjava/java/nio/ShortBufferImpl.java index 28f6efbd804..5d4eec2ff55 100644 --- a/libjava/java/nio/ShortBufferImpl.java +++ b/libjava/java/nio/ShortBufferImpl.java @@ -1,5 +1,5 @@ /* ShortBufferImpl.java -- - Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. + Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -146,7 +146,7 @@ final class ShortBufferImpl extends ShortBuffer } /** - * Absolute put method. Writes <code>value</value> to position + * Absolute put method. Writes <code>value</code> to position * <code>index</code> in the buffer. * * @exception IndexOutOfBoundsException If index is negative or not smaller diff --git a/libjava/java/nio/channels/Channel.java b/libjava/java/nio/channels/Channel.java index 8e73f87f88f..5912695d053 100644 --- a/libjava/java/nio/channels/Channel.java +++ b/libjava/java/nio/channels/Channel.java @@ -1,5 +1,5 @@ /* Channel.java -- - Copyright (C) 2002, 2004 Free Software Foundation, Inc. + Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -46,7 +46,7 @@ public interface Channel * Tells whether this channel is open or not * * @return <code>true</code>if channel is open, - * </code>false</code> otherwise + * <code>false</code> otherwise */ boolean isOpen(); diff --git a/libjava/java/nio/channels/IllegalBlockingModeException.java b/libjava/java/nio/channels/IllegalBlockingModeException.java index 5b70c1f5814..e6a3a2c29df 100644 --- a/libjava/java/nio/channels/IllegalBlockingModeException.java +++ b/libjava/java/nio/channels/IllegalBlockingModeException.java @@ -1,5 +1,5 @@ /* IllegalBlockingModeException.java -- - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -39,7 +39,7 @@ package java.nio.channels; /** - * @author Michael Koch <konqueror@gmx.de> + * @author Michael Koch (konqueror@gmx.de) * @since 1.4 * * Written using JDK 1.4.1 Online API from Sun diff --git a/libjava/java/nio/charset/spi/CharsetProvider.java b/libjava/java/nio/charset/spi/CharsetProvider.java index 1af7a8ef314..3cbc14b991c 100644 --- a/libjava/java/nio/charset/spi/CharsetProvider.java +++ b/libjava/java/nio/charset/spi/CharsetProvider.java @@ -52,7 +52,7 @@ import java.util.Iterator; * ignored, and '#' starts comments. Duplicates are ignored. The * implementations must be accessible to the classloader that requests them. * - * @author Eric Blake <ebb9@email.byu.edu> + * @author Eric Blake (ebb9@email.byu.edu) * @see Charset * @since 1.4 * @status updated to 1.4 |