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 2017/05/09 20:03:55 UTC

[07/22] httpcomponents-core git commit: Javadoc fix

Javadoc fix

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpcore/branches/4.0.x@782093 13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/commit/3461e3ef
Tree: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/tree/3461e3ef
Diff: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/diff/3461e3ef

Branch: refs/heads/4.0.x
Commit: 3461e3ef3716b62de1719f8c746341b9c6935361
Parents: e7313b3
Author: Oleg Kalnichevski <ol...@apache.org>
Authored: Fri Jun 5 18:31:53 2009 +0000
Committer: Oleg Kalnichevski <ol...@apache.org>
Committed: Fri Jun 5 18:31:53 2009 +0000

----------------------------------------------------------------------
 .../main/java/org/apache/http/nio/util/ExpandableBuffer.java    | 5 +++--
 .../main/java/org/apache/http/nio/util/SharedInputBuffer.java   | 4 +++-
 .../main/java/org/apache/http/nio/util/SharedOutputBuffer.java  | 4 +++-
 .../main/java/org/apache/http/nio/util/SimpleInputBuffer.java   | 5 +++--
 .../main/java/org/apache/http/nio/util/SimpleOutputBuffer.java  | 5 +++--
 5 files changed, 15 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/httpcomponents-core/blob/3461e3ef/httpcore-nio/src/main/java/org/apache/http/nio/util/ExpandableBuffer.java
----------------------------------------------------------------------
diff --git a/httpcore-nio/src/main/java/org/apache/http/nio/util/ExpandableBuffer.java b/httpcore-nio/src/main/java/org/apache/http/nio/util/ExpandableBuffer.java
index c54134b..d30e9ea 100644
--- a/httpcore-nio/src/main/java/org/apache/http/nio/util/ExpandableBuffer.java
+++ b/httpcore-nio/src/main/java/org/apache/http/nio/util/ExpandableBuffer.java
@@ -37,8 +37,9 @@ import java.nio.ByteBuffer;
  * 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

http://git-wip-us.apache.org/repos/asf/httpcomponents-core/blob/3461e3ef/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedInputBuffer.java
----------------------------------------------------------------------
diff --git a/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedInputBuffer.java b/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedInputBuffer.java
index e3ffeec..5b7225e 100644
--- a/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedInputBuffer.java
+++ b/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedInputBuffer.java
@@ -39,7 +39,9 @@ import org.apache.http.nio.IOControl;
 /**
  * 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
  */

http://git-wip-us.apache.org/repos/asf/httpcomponents-core/blob/3461e3ef/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedOutputBuffer.java
----------------------------------------------------------------------
diff --git a/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedOutputBuffer.java b/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedOutputBuffer.java
index e19fa0c..2bbb12d 100644
--- a/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedOutputBuffer.java
+++ b/httpcore-nio/src/main/java/org/apache/http/nio/util/SharedOutputBuffer.java
@@ -39,7 +39,9 @@ import org.apache.http.nio.IOControl;
 /**
  * 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
  */

http://git-wip-us.apache.org/repos/asf/httpcomponents-core/blob/3461e3ef/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleInputBuffer.java
----------------------------------------------------------------------
diff --git a/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleInputBuffer.java b/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleInputBuffer.java
index 650c861..eb8cded 100644
--- a/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleInputBuffer.java
+++ b/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleInputBuffer.java
@@ -35,8 +35,9 @@ import java.io.IOException;
 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
  */

http://git-wip-us.apache.org/repos/asf/httpcomponents-core/blob/3461e3ef/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleOutputBuffer.java
----------------------------------------------------------------------
diff --git a/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleOutputBuffer.java b/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleOutputBuffer.java
index 5eea83b..9ca3abb 100644
--- a/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleOutputBuffer.java
+++ b/httpcore-nio/src/main/java/org/apache/http/nio/util/SimpleOutputBuffer.java
@@ -35,8 +35,9 @@ import java.io.IOException;
 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
  */