Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2010-04-29 23:03:04 +0000
committerJoakim Erdfelt2010-04-29 23:03:04 +0000
commit6bc437c298ca1cd52bb04f4356267f4a146a8710 (patch)
tree85f347090a5a996b7208c1ac45476204f71df62d /jetty-continuation/src/main
parent5cc3068e70948bf56250becefe63012183efccbe (diff)
downloadorg.eclipse.jetty.project-6bc437c298ca1cd52bb04f4356267f4a146a8710.tar.gz
org.eclipse.jetty.project-6bc437c298ca1cd52bb04f4356267f4a146a8710.tar.xz
org.eclipse.jetty.project-6bc437c298ca1cd52bb04f4356267f4a146a8710.zip
309185 - Fix the over 300 Javadoc warnings
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1626 7e9141cc-0065-0410-87d8-b60c137991c4
Diffstat (limited to 'jetty-continuation/src/main')
-rw-r--r--jetty-continuation/src/main/java/org/eclipse/jetty/continuation/Continuation.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/Continuation.java b/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/Continuation.java
index 4811b8f11c..c60e6e110e 100644
--- a/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/Continuation.java
+++ b/jetty-continuation/src/main/java/org/eclipse/jetty/continuation/Continuation.java
@@ -27,10 +27,10 @@ import javax.servlet.ServletResponseWrapper;
* A continuation is a mechanism by which a HTTP Request can be suspended and
* restarted after a timeout or an asynchronous event has occurred.
* <p>
- * The continuation mechanism is a portable mechansim that will work
- * asychronously without additional configuration of all jetty-7,
+ * The continuation mechanism is a portable mechanism that will work
+ * asynchronously without additional configuration of all jetty-7,
* jetty-8 and Servlet 3.0 containers. With the addition of
- * the {@link ContinuationFilter}, the mechansism will also work
+ * the {@link ContinuationFilter}, the mechanism will also work
* asynchronously on jetty-6 and non-asynchronously on any
* servlet 2.5 container.
* <p>
@@ -121,7 +121,7 @@ import javax.servlet.ServletResponseWrapper;
* <h1>Continuation Timeout</h1>
* <p>
* If a continuation is suspended, but neither {@link #complete()} or {@link #resume()} is
- * called during the period set by {@link #setTimeout()}, then the continuation will
+ * called during the period set by {@link #setTimeout(long)}, then the continuation will
* expire and {@link #isExpired()} will return true.
* </p>
* <p>
@@ -245,7 +245,7 @@ public interface Continuation
* within the filter chain and/or servlet service method), then the resume
* does not take effect until the call to the filter chain and/or servlet
* returns to the container. In this case both {@link #isSuspended()} and
- * {@link isResumed()} return true. Multiple calls to resume are ignored.
+ * {@link #isResumed()} return true. Multiple calls to resume are ignored.
* </p>
* <p>
* Typically resume() is used after a call to {@link #suspend()} with
@@ -276,7 +276,7 @@ public interface Continuation
* within the filter chain and/or servlet service method), then the complete
* does not take effect until the call to the filter chain and/or servlet
* returns to the container. In this case both {@link #isSuspended()} and
- * {@link isResumed()} return true.
+ * {@link #isResumed()} return true.
* </p>
*
* <p>

Back to the top