diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2010-03-24 17:07:25 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2010-03-24 17:07:25 +0000 |
commit | 6abdfa052cc7d50e47b19dcd656b6464f3046576 (patch) | |
tree | 01064a8aaf6a2eb5d8f16f0b112f2da1ab67d3a3 | |
parent | 68d907d504ed62963c08f903f19d5262ef62ab34 (diff) | |
download | vaadin-framework-6abdfa052cc7d50e47b19dcd656b6464f3046576.tar.gz vaadin-framework-6abdfa052cc7d50e47b19dcd656b6464f3046576.zip |
minor javadoc enhancement
svn changeset:12078/svn branch:6.3
-rw-r--r-- | src/com/vaadin/data/util/HierarchicalContainer.java | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/com/vaadin/data/util/HierarchicalContainer.java b/src/com/vaadin/data/util/HierarchicalContainer.java index 7a5f0b2387..681303d709 100644 --- a/src/com/vaadin/data/util/HierarchicalContainer.java +++ b/src/com/vaadin/data/util/HierarchicalContainer.java @@ -329,11 +329,14 @@ public class HierarchicalContainer extends IndexedContainer implements } /** - * Moves a node in the container immediately after a sibling node. The two - * nodes must have the same parent in the container. + * Moves a node (an Item) in the container immediately after a sibling node. + * The two nodes must have the same parent in the container. * * @param itemId + * the identifier of the moved node (Item) * @param siblingId + * the identifier of the reference node (Item), after which the + * other node will be located */ public void moveAfterSibling(Object itemId, Object siblingId) { Object parent2 = getParent(itemId); |