From 89b51751a7cf65462afca90b7aa475d0af0d14f9 Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Tue, 12 Aug 2008 11:44:05 +0000 Subject: [PATCH] fixes #1445 (javadocs) svn changeset:5176/svn branch:trunk --- src/com/itmill/toolkit/ui/Table.java | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/src/com/itmill/toolkit/ui/Table.java b/src/com/itmill/toolkit/ui/Table.java index 510c597e40..b75bf00413 100644 --- a/src/com/itmill/toolkit/ui/Table.java +++ b/src/com/itmill/toolkit/ui/Table.java @@ -27,14 +27,26 @@ import com.itmill.toolkit.terminal.PaintTarget; import com.itmill.toolkit.terminal.Resource; /** + *

* TableComponent is used for representing data or components in * pageable and selectable table. + *

+ * + *

+ * 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. + *

* * @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"; -- 2.39.5