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/05/17 20:10:21 UTC

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

Author: ggregory
Date: Thu May 17 18:10:21 2012
New Revision: 1339763

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

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

Modified: commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/AbstractRandomAccessContent.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/AbstractRandomAccessContent.java?rev=1339763&r1=1339762&r2=1339763&view=diff
==============================================================================
--- commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/AbstractRandomAccessContent.java (original)
+++ commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/AbstractRandomAccessContent.java Thu May 17 18:10:21 2012
@@ -16,15 +16,16 @@
  */
 package org.apache.commons.vfs2.provider;
 
+import java.io.DataOutput;
 import java.io.IOException;
 
 import org.apache.commons.vfs2.RandomAccessContent;
 import org.apache.commons.vfs2.util.RandomAccessMode;
 
 /**
- * Implements the DataOutput part of the RandomAccessContent interface and throws
- * UnsupportedOperationException if one of those methods are called.
- * (for read-only random access implementations)
+ * Implements the {@link DataOutput} part of the {@link RandomAccessContent} interface and throws
+ * {@link UnsupportedOperationException} when one of these methods are called. For read-only random access
+ * implementations.
  */
 public abstract class AbstractRandomAccessContent implements RandomAccessContent
 {
@@ -36,10 +37,11 @@ public abstract class AbstractRandomAcce
     }
 
     /**
-     * @deprecated see {@link java.io.DataInputStream#readLine()} This method will be removed when it is
-     * removed from the DataInput interface this class implements (which will probably never happen).
+     * @deprecated see {@link java.io.DataInputStream#readLine()} This method will be removed when it is removed from
+     *             the DataInput interface this class implements (which will probably never happen).
      * @return The line as a String.
-     * @throws IOException if an error occurs.
+     * @throws IOException
+     *             if an error occurs.
      */
     @Deprecated
     public String readLine() throws IOException