diff options
author | Michael Koch <konqueror@gmx.de> | 2004-04-20 15:27:38 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2004-04-20 15:27:38 +0000 |
commit | 92e1fe674851eff331db253bcb79199716a341f6 (patch) | |
tree | 9914edd6a6325b7030a0b0da34b29e407a5403e4 /libjava/java/nio/channels/GatheringByteChannel.java | |
parent | 08c5d75719821940cc39591681aaec3c7fdc63ce (diff) | |
download | gcc-92e1fe674851eff331db253bcb79199716a341f6.zip gcc-92e1fe674851eff331db253bcb79199716a341f6.tar.gz gcc-92e1fe674851eff331db253bcb79199716a341f6.tar.bz2 |
Buffer.java, [...]: Fixed javadocs and jalopied all over java.nio.
2004-04-20 Michael Koch <konqueror@gmx.de>
* java/nio/Buffer.java,
java/nio/channels/AlreadyConnectedException.java,
java/nio/channels/AsynchronousCloseException.java,
java/nio/channels/ByteChannel.java,
java/nio/channels/CancelledKeyException.java,
java/nio/channels/Channel.java,
java/nio/channels/Channels.java,
java/nio/channels/ClosedByInterruptException.java,
java/nio/channels/ClosedChannelException.java,
java/nio/channels/ClosedSelectorException.java,
java/nio/channels/ConnectionPendingException.java,
java/nio/channels/DatagramChannel.java,
java/nio/channels/FileChannel.java,
java/nio/channels/FileLock.java,
java/nio/channels/FileLockInterruptionException.java,
java/nio/channels/GatheringByteChannel.java,
java/nio/channels/IllegalBlockingModeException.java,
java/nio/channels/IllegalSelectorException.java,
java/nio/channels/InterruptibleChannel.java,
java/nio/channels/NoConnectionPendingException.java,
java/nio/channels/NonReadableChannelException.java,
java/nio/channels/NonWritableChannelException.java,
java/nio/channels/NotYetBoundException.java,
java/nio/channels/NotYetConnectedException.java,
java/nio/channels/OverlappingFileLockException.java,
java/nio/channels/Pipe.java,
java/nio/channels/ReadableByteChannel.java,
java/nio/channels/ScatteringByteChannel.java,
java/nio/channels/SelectableChannel.java,
java/nio/channels/SelectionKey.java,
java/nio/channels/Selector.java,
java/nio/channels/ServerSocketChannel.java,
java/nio/channels/SocketChannel.java,
java/nio/channels/UnresolvedAddressException.java,
java/nio/channels/UnsupportedAddressTypeException.java,
java/nio/channels/WritableByteChannel.java,
java/nio/channels/spi/AbstractInterruptibleChannel.java,
java/nio/channels/spi/AbstractSelectableChannel.java,
java/nio/channels/spi/AbstractSelectionKey.java,
java/nio/channels/spi/AbstractSelector.java,
java/nio/channels/spi/SelectorProvider.java,
java/nio/charset/spi/CharsetProvider.java:
Fixed javadocs and jalopied all over java.nio.
From-SVN: r80909
Diffstat (limited to 'libjava/java/nio/channels/GatheringByteChannel.java')
-rw-r--r-- | libjava/java/nio/channels/GatheringByteChannel.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libjava/java/nio/channels/GatheringByteChannel.java b/libjava/java/nio/channels/GatheringByteChannel.java index 1528e56..80f50c8 100644 --- a/libjava/java/nio/channels/GatheringByteChannel.java +++ b/libjava/java/nio/channels/GatheringByteChannel.java @@ -1,4 +1,4 @@ -/* GatheringByteChannel.java -- +/* GatheringByteChannel.java -- Copyright (C) 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -37,11 +37,11 @@ exception statement from your version. */ package java.nio.channels; -import java.nio.ByteBuffer; import java.io.IOException; +import java.nio.ByteBuffer; -public interface GatheringByteChannel - extends WritableByteChannel + +public interface GatheringByteChannel extends WritableByteChannel { /** * Writes a sequence of bytes to this channel from a subsequence of @@ -59,9 +59,9 @@ public interface GatheringByteChannel * @exception NonWritableChannelException If this channel was not opened for * writing */ - long write (ByteBuffer[] srcs, int offset, int length) + long write(ByteBuffer[] srcs, int offset, int length) throws IOException; - + /** * Writes a sequence of bytes to this channel from the given buffers * @@ -75,5 +75,5 @@ public interface GatheringByteChannel * @exception NonWritableChannelException If this channel was not opened for * writing */ - long write (ByteBuffer[] srcs) throws IOException; + long write(ByteBuffer[] srcs) throws IOException; } |