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/Tree.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/Tree.java')
-rw-r--r-- | src/com/itmill/toolkit/ui/Tree.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/com/itmill/toolkit/ui/Tree.java b/src/com/itmill/toolkit/ui/Tree.java index 191f5e2375..8d396e244f 100644 --- a/src/com/itmill/toolkit/ui/Tree.java +++ b/src/com/itmill/toolkit/ui/Tree.java @@ -106,13 +106,13 @@ public class Tree extends Select implements Container.Hierarchical, Action.Conta /* Tree constructors ************************************************** */ /** - * Creates the new empty tree. + * Creates a new empty tree. */ public Tree() { } /** - * Creates the new empty tree with caption. + * Creates a new empty tree with caption. * @param caption */ public Tree(String caption) { @@ -120,7 +120,7 @@ public class Tree extends Select implements Container.Hierarchical, Action.Conta } /** - * Creates the new tree with caption and connect it to a Container. + * Creates a new tree with caption and connect it to a Container. * @param caption * @param dataSource */ |