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 2011/07/26 16:21:00 UTC

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

Author: angela
Date: Tue Jul 26 14:20:59 2011
New Revision: 1151111

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

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=1151111&r1=1151110&r2=1151111&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 Tue Jul 26 14:20:59 2011
@@ -308,7 +308,7 @@ public class JcrUtils {
      *
      * @see NodeIterable
      * @param node parent node
-     * @param pattern node name pattern
+     * @param globs node name pattern
      * @return matching child nodes
      * @throws RepositoryException
      *         if the {@link Node#getNodes(String[])} call fails
@@ -353,14 +353,14 @@ public class JcrUtils {
     }
 
     /**
-     * Calls {@link Node#getProperty(String[])} on the given node with the
+     * Calls {@link Node#getProperties(String[])} on the given node with the
      * given name globs and returns the resulting {@link PropertyIterator}
      * as an {@link Iterable<Property>} instance for use in a Java 5
      * for-each loop.
      *
      * @see PropertyIterable
      * @param node node
-     * @param pattern property name globs
+     * @param globs property name globs
      * @return matching properties of the node
      * @throws RepositoryException
      *         if the {@link Node#getProperties(String[])} call fails
@@ -692,7 +692,7 @@ public class JcrUtils {
      *
      * @since Apache Jackrabbit 2.3
      * @param node node to be read
-     * @param stream to which the file contents are written
+     * @param output to which the file contents are written
      * @throws RepositoryException if the file can not be accessed
      * @throws IOException if the file can not be read or written
      */
@@ -738,7 +738,7 @@ public class JcrUtils {
      *
      * @since Apache Jackrabbit 2.3
      * @param node file node
-     * @param last modified date
+     * @param date modified date
      * @throws RepositoryException if the last modified date can not be set
      */
     public void setLastModified(Node node, Calendar date)