You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@click.apache.org by sa...@apache.org on 2010/06/30 01:05:07 UTC

svn commit: r959137 - /click/trunk/click/framework/src/org/apache/click/control/Table.java

Author: sabob
Date: Tue Jun 29 23:05:06 2010
New Revision: 959137

URL: http://svn.apache.org/viewvc?rev=959137&view=rev
Log:
javadoc

Modified:
    click/trunk/click/framework/src/org/apache/click/control/Table.java

Modified: click/trunk/click/framework/src/org/apache/click/control/Table.java
URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/control/Table.java?rev=959137&r1=959136&r2=959137&view=diff
==============================================================================
--- click/trunk/click/framework/src/org/apache/click/control/Table.java (original)
+++ click/trunk/click/framework/src/org/apache/click/control/Table.java Tue Jun 29 23:05:06 2010
@@ -567,21 +567,25 @@ public class Table extends AbstractContr
     }
 
     /**
-     * Return the content of the HTML table's <tt>&lt;caption&gt;</tt> elements.
-     * @return the tables caption or <tt>null</tt> if not defined.
+     * Return the content of the table <tt>&lt;caption&gt;</tt> element, or null
+     * if not defined.
+     *
+     * @return the content of the table caption element, or <tt>null</tt> if not
+     * defined.
      */
     public String getCaption() {
         return caption;
     }
-    
+
     /**
-     * Set the HTML table's <tt>&lt;caption&gt;</tt> element. 
+     * Set the content of the table <tt>&lt;caption&gt;</tt> element.
+     *
      * @param caption the content of the caption element.
      */
     public void setCaption(String caption) {
         this.caption = caption;
     }
-    
+
     /**
      * Set the HTML class attribute.
      * <p/>