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:32:13 UTC

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

Author: ggregory
Date: Mon Jul 16 14:32:12 2012
New Revision: 1362062

URL: http://svn.apache.org/viewvc?rev=1362062&view=rev
Log:
Fix Javadoc.

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=1362062&r1=1362061&r2=1362062&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:32:12 2012
@@ -181,9 +181,9 @@ public abstract class AbstractFileObject
      * @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.
+     *            If {@code true}, the permission applies only to the owner; otherwise, it applies to everybody.
      * @return true if the operation succeeded
-     * @see {@link #setReadable(boolean, boolean)}
+     * @see #setReadable(boolean, boolean)
      * @since 2.1
      */
     protected boolean doSetReadable(boolean readable, boolean ownerOnly) throws Exception
@@ -210,9 +210,9 @@ public abstract class AbstractFileObject
      * @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.
+     *            If {@code true}, the permission applies only to the owner; otherwise, it applies to everybody.
      * @return true if the operation succeeded
-     * @see {@link #setWritable(boolean, boolean)}
+     * @see #setWritable(boolean, boolean)
      * @since 2.1
      */
     protected boolean doSetWritable(boolean writable, boolean ownerOnly) throws Exception
@@ -226,9 +226,9 @@ public abstract class AbstractFileObject
      * @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.
+     *            If {@code true}, the permission applies only to the owner; otherwise, it applies to everybody.
      * @return true if the operation succeeded
-     * @see {@link #setExecutable(boolean, boolean)}
+     * @see #setExecutable(boolean, boolean)
      * @since 2.1
      */
     protected boolean doSetExecutable(boolean writable, boolean ownerOnly) throws Exception
@@ -600,7 +600,7 @@ public abstract class AbstractFileObject
     /**
      * Determines if this file is executable.
      *
-     * @return <code>true</code> if this file is executable, <code>false</code> if not.
+     * @return {@code true} if this file is executable, <code>false</code> if not.
      * @throws FileSystemException On error determining if this file exists.
      */
     public boolean isExecutable() throws FileSystemException