aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatti Tahvonen <matti.tahvonen@itmill.com>2009-01-19 15:05:25 +0000
committerMatti Tahvonen <matti.tahvonen@itmill.com>2009-01-19 15:05:25 +0000
commitce439f21767dad2040d1a302578ffb046f2049a8 (patch)
treed994beefabea5588392e270f40116615c48b71ca /src
parentceb983192a110f523120afaa4dc8d67020bfd485 (diff)
downloadvaadin-framework-ce439f21767dad2040d1a302578ffb046f2049a8.tar.gz
vaadin-framework-ce439f21767dad2040d1a302578ffb046f2049a8.zip
fixes #2452, invalid javadoc
svn changeset:6594/svn branch:trunk
Diffstat (limited to 'src')
-rw-r--r--src/com/itmill/toolkit/data/Container.java16
1 files 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 {
* <p>
* Sets the parent of an Item. The new parent item must exist and be
* able to have children. (
- * <code>canHaveChildren(newParentId) == true</code>). It is also
- * possible to detach a node from the hierarchy (and thus make it root)
- * by setting the parent <code>null</code>.
+ * <code>{@link #areChildrenAllowed(Object)} == true</code> ). It is
+ * also possible to detach a node from the hierarchy (and thus make it
+ * root) by setting the parent <code>null</code>.
* </p>
*
* <p>
@@ -481,8 +481,8 @@ public interface Container {
* <p>
* Sets the given Item's capability to have children. If the Item
* identified with <code>itemId</code> already has children and
- * <code>areChildrenAllowed</code> is false this method fails and
- * <code>false</code> is returned.
+ * <code>{@link #areChildrenAllowed(Object)}</code> is false this method
+ * fails and <code>false</code> is returned.
* </p>
* <p>
* The children must be first explicitly removed with
@@ -523,9 +523,9 @@ public interface Container {
/**
* <p>
- * Tests if the Item specified with <code>itemId</code> has child
- * Items or if it is a leaf. The {@link #getChildren(Object itemId)}
- * method always returns <code>null</code> for leaf Items.
+ * Tests if the Item specified with <code>itemId</code> has child Items
+ * or if it is a leaf. The {@link #getChildren(Object itemId)} method
+ * always returns <code>null</code> for leaf Items.
* </p>
*
* <p>