Better Javadoc based on Frederic's modification at the 'aggregate' branch

This commit is contained in:
Trustin Lee 2009-10-13 03:41:35 +00:00
parent e88dd98cf1
commit 1ed1d63dd6

View File

@ -349,9 +349,9 @@ public class ChannelBuffers {
} }
/** /**
* Creates a new composite buffer which wraps the specified buffers without * Creates a new composite buffer which wraps the readable bytes of the
* copying them. A modification on the specified buffers' content will be * specified buffers without copying them. A modification on the content
* visible to the returned buffer. * of the specified buffers will be visible to the returned buffer.
* *
* @throws IllegalArgumentException * @throws IllegalArgumentException
* if the specified buffers' endianness are different from each * if the specified buffers' endianness are different from each
@ -377,9 +377,9 @@ public class ChannelBuffers {
} }
/** /**
* Creates a new composite buffer which wraps the specified NIO buffers * Creates a new composite buffer which wraps the slices of the specified
* without copying them. A modification on the specified buffers' content * NIO buffers without copying them. A modification on the content of the
* will be visible to the returned buffer. * specified buffers will be visible to the returned buffer.
* *
* @throws IllegalArgumentException * @throws IllegalArgumentException
* if the specified buffers' endianness are different from each * if the specified buffers' endianness are different from each