summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/com/vaadin/data/util/HierarchicalContainer.java7
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);