You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2009/06/05 20:31:53 UTC

svn commit: r782093 - in /httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util: ExpandableBuffer.java SharedInputBuffer.java SharedOutputBuffer.java SimpleInputBuffer.java SimpleOutputBuffer.java

Author: olegk
Date: Fri Jun  5 18:31:53 2009
New Revision: 782093

URL: http://svn.apache.org/viewvc?rev=782093&view=rev
Log:
Javadoc fix

Modified:
    httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/ExpandableBuffer.java
    httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedInputBuffer.java
    httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedOutputBuffer.java
    httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleInputBuffer.java
    httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleOutputBuffer.java

Modified: httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/ExpandableBuffer.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/ExpandableBuffer.java?rev=782093&r1=782092&r2=782093&view=diff
==============================================================================
--- httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/ExpandableBuffer.java (original)
+++ httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/ExpandableBuffer.java Fri Jun  5 18:31:53 2009
@@ -37,8 +37,9 @@
  * A buffer that expand its capacity on demand using {@link ByteBufferAllocator}
  * interface. Internally, this class is backed by an instance of 
  * {@link ByteBuffer}. 
- * 
- *
+ * <p>
+ * This class is not thread safe.
+ *  
  * @version $Revision$
  *
  * @since 4.0

Modified: httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedInputBuffer.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedInputBuffer.java?rev=782093&r1=782092&r2=782093&view=diff
==============================================================================
--- httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedInputBuffer.java (original)
+++ httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedInputBuffer.java Fri Jun  5 18:31:53 2009
@@ -39,7 +39,9 @@
 /**
  * Implementation of the {@link ContentInputBuffer} interface that can be 
  * shared by multiple threads, usually the I/O dispatch of an I/O reactor and
- * a worker thread. This class is thread safe.
+ * a worker thread. 
+ * <p>
+ * {@link ContentInputBuffer} implemented by this class is thread safe. 
  *
  * @since 4.0
  */

Modified: httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedOutputBuffer.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedOutputBuffer.java?rev=782093&r1=782092&r2=782093&view=diff
==============================================================================
--- httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedOutputBuffer.java (original)
+++ httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedOutputBuffer.java Fri Jun  5 18:31:53 2009
@@ -39,7 +39,9 @@
 /**
  * Implementation of the {@link ContentOutputBuffer} interface that can be 
  * shared by multiple threads, usually the I/O dispatch of an I/O reactor and
- * a worker thread. This class is thread safe.
+ * a worker thread.
+ * <p>
+ * {@link ContentOutputBuffer} implemented by this class is thread safe. 
  *
  * @since 4.0
  */

Modified: httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleInputBuffer.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleInputBuffer.java?rev=782093&r1=782092&r2=782093&view=diff
==============================================================================
--- httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleInputBuffer.java (original)
+++ httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleInputBuffer.java Fri Jun  5 18:31:53 2009
@@ -35,8 +35,9 @@
 import org.apache.http.nio.ContentDecoder;
 
 /**
- * Simple implementation of the {@link ContentInputBuffer} interface. This class
- * is not threading safe.
+ * Basic implementation of the {@link ContentInputBuffer} interface.
+ * <p>
+ * {@link ContentInputBuffer} implemented by this class is not thread safe. 
  *
  * @since 4.0
  */

Modified: httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleOutputBuffer.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleOutputBuffer.java?rev=782093&r1=782092&r2=782093&view=diff
==============================================================================
--- httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleOutputBuffer.java (original)
+++ httpcomponents/httpcore/branches/4.0.x/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleOutputBuffer.java Fri Jun  5 18:31:53 2009
@@ -35,8 +35,9 @@
 import org.apache.http.nio.ContentEncoder;
 
 /**
- * Simple implementation of the {@link ContentOutputBuffer} interface. 
- * This class is not threading safe.
+ * Basic implementation of the {@link ContentOutputBuffer} interface. 
+ * <p>
+ * {@link ContentOutputBuffer} implemented by this class is not thread safe. 
  *
  * @since 4.0
  */