From ce439f21767dad2040d1a302578ffb046f2049a8 Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Mon, 19 Jan 2009 15:05:25 +0000 Subject: [PATCH] fixes #2452, invalid javadoc svn changeset:6594/svn branch:trunk --- src/com/itmill/toolkit/data/Container.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/com/itmill/toolkit/data/Container.java b/src/com/itmill/toolkit/data/Container.java index 97a7a4fc5e..36b0caca93 100644 --- a/src/com/itmill/toolkit/data/Container.java +++ b/src/com/itmill/toolkit/data/Container.java @@ -444,9 +444,9 @@ public interface Container { *

* Sets the parent of an Item. The new parent item must exist and be * able to have children. ( - * canHaveChildren(newParentId) == true). It is also - * possible to detach a node from the hierarchy (and thus make it root) - * by setting the parent null. + * {@link #areChildrenAllowed(Object)} == true ). It is + * also possible to detach a node from the hierarchy (and thus make it + * root) by setting the parent null. *

* *

@@ -481,8 +481,8 @@ public interface Container { *

* Sets the given Item's capability to have children. If the Item * identified with itemId already has children and - * areChildrenAllowed is false this method fails and - * false is returned. + * {@link #areChildrenAllowed(Object)} is false this method + * fails and false is returned. *

*

* The children must be first explicitly removed with @@ -523,9 +523,9 @@ public interface Container { /** *

- * Tests if the Item specified with itemId has child - * Items or if it is a leaf. The {@link #getChildren(Object itemId)} - * method always returns null for leaf Items. + * Tests if the Item specified with itemId has child Items + * or if it is a leaf. The {@link #getChildren(Object itemId)} method + * always returns null for leaf Items. *

* *

-- 2.39.5