]> source.dussan.org Git - vaadin-framework.git/commitdiff
fixes #1445 (javadocs)
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Tue, 12 Aug 2008 11:44:05 +0000 (11:44 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Tue, 12 Aug 2008 11:44:05 +0000 (11:44 +0000)
svn changeset:5176/svn branch:trunk

src/com/itmill/toolkit/ui/Table.java

index 510c597e409ca620f7f370196eec76bbf7106c89..b75bf00413abb0068937e4247b5ba33acb0875fe 100644 (file)
@@ -27,14 +27,26 @@ import com.itmill.toolkit.terminal.PaintTarget;
 import com.itmill.toolkit.terminal.Resource;
 
 /**
+ * <p>
  * <code>TableComponent</code> is used for representing data or components in
  * pageable and selectable table.
+ * </p>
+ * 
+ * <p>
+ * Note! Since version 5, components in Table will not have their caption nor
+ * icon rendered. In order to workaround this limitation, wrap your component in
+ * a Layout.
+ * </p>
  * 
  * @author IT Mill Ltd.
  * @version
  * @VERSION@
  * @since 3.0
  */
+/**
+ * @author mattitahvonen
+ * 
+ */
 public class Table extends AbstractSelect implements Action.Container,
         Container.Ordered, Container.Sortable {
 
@@ -1695,13 +1707,10 @@ public class Table extends AbstractSelect implements Action.Container,
         }
     }
 
-    /**
-     * Paints the content of this component.
+    /*
+     * (non-Javadoc)
      * 
-     * @param target
-     *                the Paint target.
-     * @throws PaintException
-     *                 if the paint operation failed.
+     * @see com.itmill.toolkit.ui.AbstractSelect#paintContent(com.itmill.toolkit.terminal.PaintTarget)
      */
     public void paintContent(PaintTarget target) throws PaintException {
 
@@ -2016,10 +2025,10 @@ public class Table extends AbstractSelect implements Action.Container,
         target.endTag("visiblecolumns");
     }
 
-    /**
-     * Gets the UIDL tag corresponding to component.
+    /*
+     * (non-Javadoc)
      * 
-     * @return the UIDL tag as string.
+     * @see com.itmill.toolkit.ui.AbstractSelect#getTag()
      */
     public String getTag() {
         return "table";