diff options
author | Artur Signell <artur.signell@itmill.com> | 2010-07-07 08:40:50 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2010-07-07 08:40:50 +0000 |
commit | e883e70cc0d7f459fd73b079ea29e25f8dd64ab4 (patch) | |
tree | fa99152e8a062e459189d120b9e4d0068caab996 /src/com/vaadin/ui | |
parent | d5f437173f1f4c33b9938181e9e935fa0386d4d3 (diff) | |
download | vaadin-framework-e883e70cc0d7f459fd73b079ea29e25f8dd64ab4.tar.gz vaadin-framework-e883e70cc0d7f459fd73b079ea29e25f8dd64ab4.zip |
Javadoc fix for #5320
svn changeset:14119/svn branch:6.4
Diffstat (limited to 'src/com/vaadin/ui')
-rw-r--r-- | src/com/vaadin/ui/Table.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/com/vaadin/ui/Table.java b/src/com/vaadin/ui/Table.java index a7e0f1c1d4..eba9bed272 100644 --- a/src/com/vaadin/ui/Table.java +++ b/src/com/vaadin/ui/Table.java @@ -121,8 +121,7 @@ public class Table extends AbstractSelect implements Action.Container, public static final String ALIGN_RIGHT = "e"; /** - * Column header mode: Column headers are hidden. <b>This is the default - * behavior. </b> + * Column header mode: Column headers are hidden. */ public static final int COLUMN_HEADER_MODE_HIDDEN = -1; @@ -139,7 +138,10 @@ public class Table extends AbstractSelect implements Action.Container, /** * Column header mode: Column headers are explicitly specified with - * {@link #setColumnHeaders(String[])} + * {@link #setColumnHeaders(String[])}. If a header is not specified for a + * given property, its property id is used instead. + * <p> + * <b>This is the default behavior. </b> */ public static final int COLUMN_HEADER_MODE_EXPLICIT_DEFAULTS_ID = 2; |