]> source.dussan.org Git - vaadin-framework.git/commitdiff
fixes #2452, invalid javadoc
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Mon, 19 Jan 2009 15:05:25 +0000 (15:05 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Mon, 19 Jan 2009 15:05:25 +0000 (15:05 +0000)
svn changeset:6594/svn branch:trunk

src/com/itmill/toolkit/data/Container.java

index 97a7a4fc5e72377ef4d8fc53802fc19551b42a49..36b0caca934ef23da87f14d10bdcb3c242ed19b1 100644 (file)
@@ -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>