Add some units info to the Javadocs
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 15 Jul 2011 17:51:10 +0000 (17:51 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 15 Jul 2011 17:51:10 +0000 (17:51 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1147263 13f79535-47bb-0310-9956-ffa450edef68

java/javax/servlet/AsyncContext.java

index a2ac2a3..60d32fa 100644 (file)
@@ -72,7 +72,13 @@ public interface AsyncContext {
     <T extends AsyncListener> T createListener(Class<T> clazz)
     throws ServletException;
     
+    /**
+     * Get timeout in milliseconds
+     */
     long getTimeout();
     
+    /**
+     * Set timeout in milliseconds
+     */
     void setTimeout(long timeout);
 }