You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by re...@apache.org on 2009/05/20 14:19:35 UTC

svn commit: r776673 - /jackrabbit/trunk/jackrabbit-jcr-commons/src/main/java/org/apache/jackrabbit/commons/JcrUtils.java

Author: reschke
Date: Wed May 20 12:19:35 2009
New Revision: 776673

URL: http://svn.apache.org/viewvc?rev=776673&view=rev
Log:
JCR-73: JavaDoc fixes

Modified:
    jackrabbit/trunk/jackrabbit-jcr-commons/src/main/java/org/apache/jackrabbit/commons/JcrUtils.java

Modified: jackrabbit/trunk/jackrabbit-jcr-commons/src/main/java/org/apache/jackrabbit/commons/JcrUtils.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-jcr-commons/src/main/java/org/apache/jackrabbit/commons/JcrUtils.java?rev=776673&r1=776672&r2=776673&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-jcr-commons/src/main/java/org/apache/jackrabbit/commons/JcrUtils.java (original)
+++ jackrabbit/trunk/jackrabbit-jcr-commons/src/main/java/org/apache/jackrabbit/commons/JcrUtils.java Wed May 20 12:19:35 2009
@@ -86,7 +86,7 @@
     /**
      * Returns matching child nodes of the given node as an {@link Iterable}
      * for use in a Java 5 for-each loop. The return value encapsulates
-     * the {@link Node#getNodes(String))} method call. Potential
+     * the {@link Node#getNodes(String)} method call. Potential
      * {@link RepositoryException}s are converted to {@link RuntimeException}s.
      *
      * @param node parent node
@@ -111,7 +111,7 @@
     /**
      * Returns matching child nodes of the given node as an {@link Iterable}
      * for use in a Java 5 for-each loop. The return value encapsulates
-     * the {@link Node#getNodes(String[]))} method call. Potential
+     * the {@link Node#getNodes(String[])} method call. Potential
      * {@link RepositoryException}s are converted to {@link RuntimeException}s.
      *
      * @param node parent node
@@ -136,7 +136,7 @@
     /**
      * Returns the properties of the given node as an {@link Iterable}
      * for use in a Java 5 for-each loop. The return value encapsulates
-     * the {@link Node#getProperties())} method call. Potential
+     * the {@link Node#getProperties()} method call. Potential
      * {@link RepositoryException}s are converted to {@link RuntimeException}s.
      *
      * @param node node
@@ -159,7 +159,7 @@
     /**
      * Returns matching properties of the given node as an {@link Iterable}
      * for use in a Java 5 for-each loop. The return value encapsulates
-     * the {@link Node#getProperties(String))} method call. Potential
+     * the {@link Node#getProperties(String)} method call. Potential
      * {@link RepositoryException}s are converted to {@link RuntimeException}s.
      *
      * @param node node
@@ -184,7 +184,7 @@
     /**
      * Returns matching properties of the given node as an {@link Iterable}
      * for use in a Java 5 for-each loop. The return value encapsulates
-     * the {@link Node#getProperty(String[]))} method call. Potential
+     * the {@link Node#getProperty(String[])} method call. Potential
      * {@link RepositoryException}s are converted to {@link RuntimeException}s.
      *
      * @param node node
@@ -210,7 +210,7 @@
     /**
      * Returns the references that point to the given node as an
      * {@link Iterable} for use in a Java 5 for-each loop. The return value
-     * encapsulates the {@link Node#getReferences())} method call. Potential
+     * encapsulates the {@link Node#getReferences()} method call. Potential
      * {@link RepositoryException}s are converted to {@link RuntimeException}s.
      *
      * @param node reference target
@@ -259,7 +259,7 @@
     /**
      * Returns the weak references that point to the given node as an
      * {@link Iterable} for use in a Java 5 for-each loop. The return value
-     * encapsulates the {@link Node#getWeakReferences())} method call.
+     * encapsulates the {@link Node#getWeakReferences()} method call.
      * Potential {@link RepositoryException}s are converted to
      * {@link RuntimeException}s.
      *



Re: svn commit: r776673 - /jackrabbit/trunk/jackrabbit-jcr-commons/src/main/java/org/apache/jackrabbit/commons/JcrUtils.java

Posted by Jukka Zitting <ju...@gmail.com>.
Hi,

On Wed, May 20, 2009 at 2:19 PM,  <re...@apache.org> wrote:
> Log:
> JCR-73: JavaDoc fixes
>
> Modified:
>    jackrabbit/trunk/jackrabbit-jcr-commons/src/main/java/org/apache/jackrabbit/commons/JcrUtils.java

Thanks!

BR,

Jukka Zitting