diff options
author | Mohamed Atique <mohamed.atique@renaissance-it.com> | 2007-04-13 10:31:53 +0000 |
---|---|---|
committer | Mohamed Atique <mohamed.atique@renaissance-it.com> | 2007-04-13 10:31:53 +0000 |
commit | 4c83e1e7742c96d53265bd37ee7a08ede4233b17 (patch) | |
tree | b7d0ef3385ee2d755abd6a32b1d82db449d20c00 /src/com/itmill/toolkit/ui/Table.java | |
parent | dc8769b09360e42cf5f619d077453f5609cbad7d (diff) | |
download | vaadin-framework-4c83e1e7742c96d53265bd37ee7a08ede4233b17.tar.gz vaadin-framework-4c83e1e7742c96d53265bd37ee7a08ede4233b17.zip |
Constructors documents changed
svn changeset:1230/svn branch:trunk
Diffstat (limited to 'src/com/itmill/toolkit/ui/Table.java')
-rw-r--r-- | src/com/itmill/toolkit/ui/Table.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/com/itmill/toolkit/ui/Table.java b/src/com/itmill/toolkit/ui/Table.java index e51c4b44a6..9dbff353d8 100644 --- a/src/com/itmill/toolkit/ui/Table.java +++ b/src/com/itmill/toolkit/ui/Table.java @@ -321,14 +321,14 @@ public class Table extends Select implements Action.Container, /* Table constructors *************************************************** */ /** - * Creates new empty table. + * Creates a new empty table. */ public Table() { setRowHeaderMode(ROW_HEADER_MODE_HIDDEN); } /** - * Creates the new empty table with caption. + * Creates a new empty table with caption. * @param caption */ public Table(String caption) { @@ -337,7 +337,7 @@ public class Table extends Select implements Action.Container, } /** - * Creates the new table with caption and connect it to a Container. + * Creates a new table with caption and connect it to a Container. * @param caption * @param dataSource */ |