]> source.dussan.org Git - vaadin-framework.git/commitdiff
minor javadoc enhancement
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Wed, 24 Mar 2010 17:07:25 +0000 (17:07 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Wed, 24 Mar 2010 17:07:25 +0000 (17:07 +0000)
svn changeset:12078/svn branch:6.3

src/com/vaadin/data/util/HierarchicalContainer.java

index 7a5f0b2387141d85cb88ffb23e412181d42b1e1b..681303d709d7f2328666dd8684eb3fd052448cdb 100644 (file)
@@ -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);