You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by an...@apache.org on 2008/11/21 14:40:44 UTC

svn commit: r719579 - /jackrabbit/trunk/jackrabbit-jcr2spi/src/main/java/org/apache/jackrabbit/jcr2spi/hierarchy/ChildNodeEntriesImpl.java

Author: angela
Date: Fri Nov 21 05:40:44 2008
New Revision: 719579

URL: http://svn.apache.org/viewvc?rev=719579&view=rev
Log:
javadoc

Modified:
    jackrabbit/trunk/jackrabbit-jcr2spi/src/main/java/org/apache/jackrabbit/jcr2spi/hierarchy/ChildNodeEntriesImpl.java

Modified: jackrabbit/trunk/jackrabbit-jcr2spi/src/main/java/org/apache/jackrabbit/jcr2spi/hierarchy/ChildNodeEntriesImpl.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-jcr2spi/src/main/java/org/apache/jackrabbit/jcr2spi/hierarchy/ChildNodeEntriesImpl.java?rev=719579&r1=719578&r2=719579&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-jcr2spi/src/main/java/org/apache/jackrabbit/jcr2spi/hierarchy/ChildNodeEntriesImpl.java (original)
+++ jackrabbit/trunk/jackrabbit-jcr2spi/src/main/java/org/apache/jackrabbit/jcr2spi/hierarchy/ChildNodeEntriesImpl.java Fri Nov 21 05:40:44 2008
@@ -163,7 +163,7 @@
      * pending changes.
      * @see org.apache.jackrabbit.jcr2spi.operation.AddNode
      * @see org.apache.jackrabbit.jcr2spi.operation.Move
-     * @see org.apache.jackrabbit.jcr2spi.operation.Reorder
+     * @see org.apache.jackrabbit.jcr2spi.operation.ReorderNodes
      */
     synchronized void update(Iterator childNodeInfos) {
         // insert missing entries and reorder all if necessary.
@@ -321,7 +321,7 @@
      * @param newEntry
      * @param index
      * @param insertAfter
-     * @return
+     * @return the <code>LinkNode</code> associated with the <code>newEntry</code>.
      */
     private LinkedEntries.LinkNode internalAddAfter(NodeEntry newEntry, int index,
                                                     LinkedEntries.LinkNode insertAfter) {
@@ -438,8 +438,8 @@
 
     /**
      *
-     * @param insertEntry
-     * @param afterEntry
+     * @param insertLN
+     * @param afterLN
      */
     private void reorderAfter(LinkedEntries.LinkNode insertLN, LinkedEntries.LinkNode afterLN) {
         // the link node to move
@@ -547,7 +547,7 @@
          *
          * @param cne the child node entry to add.
          * @param index
-         * @param node after which to insert the new entry
+         * @param insertAfter after which to insert the new entry
          * @return the LinkNode which refers to the added <code>NodeEntry</code>.
          */
         LinkedEntries.LinkNode addAfter(NodeEntry cne, int index, LinkedEntries.LinkNode insertAfter) {