You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by tr...@apache.org on 2007/12/18 05:24:36 UTC

svn commit: r605079 - /mina/trunk/core/src/main/java/org/apache/mina/filter/keepalive/KeepAliveFilter.java

Author: trustin
Date: Mon Dec 17 20:24:35 2007
New Revision: 605079

URL: http://svn.apache.org/viewvc?rev=605079&view=rev
Log:
Made the table look more pretty

Modified:
    mina/trunk/core/src/main/java/org/apache/mina/filter/keepalive/KeepAliveFilter.java

Modified: mina/trunk/core/src/main/java/org/apache/mina/filter/keepalive/KeepAliveFilter.java
URL: http://svn.apache.org/viewvc/mina/trunk/core/src/main/java/org/apache/mina/filter/keepalive/KeepAliveFilter.java?rev=605079&r1=605078&r2=605079&view=diff
==============================================================================
--- mina/trunk/core/src/main/java/org/apache/mina/filter/keepalive/KeepAliveFilter.java (original)
+++ mina/trunk/core/src/main/java/org/apache/mina/filter/keepalive/KeepAliveFilter.java Mon Dec 17 20:24:35 2007
@@ -50,11 +50,11 @@
  * message is a keep-alive message or not and creates a new keep-alive
  * message:
  * 
- * <table>
+ * <table border="1">
  * <tr>
  * <th>Name</th><th>Description</th><th>Implementation</th>
  * </tr>
- * <tr>
+ * <tr valign="top">
  * <td>Active</td>
  * <td>You want a keep-alive request is sent when the reader is idle.
  * Once the request is sent, the response for the request should be
@@ -65,7 +65,7 @@
  * {@link KeepAliveMessageFactory#getResponse(IoSession, Object)} must
  * return a non-<tt>null</tt>.</td>
  * </tr>
- * <tr>
+ * <tr valign="top">
  * <td>Semi-active</td>
  * <td>You want a keep-alive request to be sent when the reader is idle.
  * However, you don't really care if the response is received or not.
@@ -78,7 +78,7 @@
  * should be set to {@link KeepAlivePolicy#OFF} or {@link KeepAlivePolicy#LOG}.
  * </td>
  * </tr>
- * <tr>
+ * <tr valign="top">
  * <td>Passive</td>
  * <td>You don't want to send a keep-alive request by yourself, but the
  * response should be sent back if a keep-alive request is received.</td>
@@ -86,7 +86,7 @@
  * <tt>null</tt> and {@link KeepAliveMessageFactory#getResponse(IoSession, Object)}
  * must return a non-<tt>null</tt>.</td>
  * </tr>
- * <tr>
+ * <tr valign="top">
  * <td>Deaf Speaker</td>
  * <td>You want a keep-alive request to be sent when the reader is idle, but
  * you don't want to send any response back.</td> 
@@ -95,7 +95,7 @@
  * {@link KeepAliveMessageFactory#getResponse(IoSession, Object)} must
  * return <tt>null</tt>.</td>
  * </tr>
- * <tr>
+ * <tr valign="top">
  * <td>Silent Listener</td>
  * <td>You don't want to send a keep-alive request by yourself nor send any
  * response back.</td>