From 92e1fe674851eff331db253bcb79199716a341f6 Mon Sep 17 00:00:00 2001 From: Michael Koch Date: Tue, 20 Apr 2004 15:27:38 +0000 Subject: Buffer.java, [...]: Fixed javadocs and jalopied all over java.nio. 2004-04-20 Michael Koch * 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 --- libjava/java/nio/channels/GatheringByteChannel.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'libjava/java/nio/channels/GatheringByteChannel.java') 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; } -- cgit v1.1