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 2013/01/03 15:40:35 UTC

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

Author: ggregory
Date: Thu Jan  3 14:40:35 2013
New Revision: 1428364

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

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

Modified: commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileContentInfo.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileContentInfo.java?rev=1428364&r1=1428363&r2=1428364&view=diff
==============================================================================
--- commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileContentInfo.java (original)
+++ commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileContentInfo.java Thu Jan  3 14:40:35 2013
@@ -17,18 +17,20 @@
 package org.apache.commons.vfs2;
 
 /**
- * Interface to the content info.
+ * Informs on the content of a file with content type and encoding.
  */
 public interface FileContentInfo
 {
     /**
-     * the content type.
+     * Gets the content type.
+     * 
      * @return The file content type.
      */
     String getContentType();
 
     /**
-     * the content encoding.
+     * Gets the content encoding.
+     * 
      * @return The file content encoding.
      */
     String getContentEncoding();