You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2012/07/16 16:27:18 UTC

svn commit: r1362058 - /commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/AbstractFileObject.java

Author: ggregory
Date: Mon Jul 16 14:27:17 2012
New Revision: 1362058

URL: http://svn.apache.org/viewvc?rev=1362058&view=rev
Log:
Add missing Javadoc tags.

Modified:
    commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/AbstractFileObject.java

Modified: commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/AbstractFileObject.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/AbstractFileObject.java?rev=1362058&r1=1362057&r2=1362058&view=diff
==============================================================================
--- commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/AbstractFileObject.java (original)
+++ commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/AbstractFileObject.java Mon Jul 16 14:27:17 2012
@@ -178,6 +178,11 @@ public abstract class AbstractFileObject
     /**
      * Only called if {@link #doGetType} does not return {@link FileType#IMAGINARY}.
      * 
+     * @param writable
+     *            True to allow access, false to disallow
+     * @param ownerOnly
+     *            If <code>true</code>, the permission applies only to the owner; otherwise, it applies to everybody.
+     * @return true if the operation succeeded
      * @see {@link #setReadable(boolean, boolean)}
      * @since 2.1
      */
@@ -202,6 +207,11 @@ public abstract class AbstractFileObject
     /**
      * Only called if {@link #doGetType} does not return {@link FileType#IMAGINARY}.
      * 
+     * @param writable
+     *            True to allow access, false to disallow
+     * @param ownerOnly
+     *            If <code>true</code>, the permission applies only to the owner; otherwise, it applies to everybody.
+     * @return true if the operation succeeded
      * @see {@link #setWritable(boolean, boolean)}
      * @since 2.1
      */
@@ -213,6 +223,11 @@ public abstract class AbstractFileObject
     /**
      * Only called if {@link #doGetType} does not return {@link FileType#IMAGINARY}.
      * 
+     * @param writable
+     *            True to allow access, false to disallow
+     * @param ownerOnly
+     *            If <code>true</code>, the permission applies only to the owner; otherwise, it applies to everybody.
+     * @return true if the operation succeeded
      * @see {@link #setExecutable(boolean, boolean)}
      * @since 2.1
      */