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

svn commit: r1366511 - /commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileContent.java

Author: sebb
Date: Fri Jul 27 19:21:04 2012
New Revision: 1366511

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

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

Modified: commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileContent.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileContent.java?rev=1366511&r1=1366510&r2=1366511&view=diff
==============================================================================
--- commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileContent.java (original)
+++ commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileContent.java Fri Jul 27 19:21:04 2012
@@ -203,11 +203,13 @@ public interface FileContent extends Clo
      * <p>There may only be a single input or output stream open for the
      * file at any time.
      *
-     * @param bAppend true if you would like to append to the file
+     * @param bAppend true if you would like to append to the file.
+     *        This may not be supported by all implementations.
      * @return An output stream to write the file's content to.  The stream is
      *         buffered, so there is no need to wrap it in a
      *         {@code BufferedOutputStream}.
      * @throws FileSystemException If the file is read-only, or is being read, or is being written,
+     *                             or bAppend is true and the implementation does not support it,
      *                             or on error opening the stream.
      */
     OutputStream getOutputStream(boolean bAppend) throws FileSystemException;