Author: ggregory
Date: Thu Jan 3 14:40:49 2013
New Revision: 1428365
URL: http://svn.apache.org/viewvc?rev=1428365&view=rev
Log:
Sort members.
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=1428365&r1=1428364&r2=1428365&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:49 2013
@@ -22,16 +22,16 @@ package org.apache.commons.vfs2;
public interface FileContentInfo
{
/**
- * Gets the content type.
+ * Gets the content encoding.
*
- * @return The file content type.
+ * @return The file content encoding.
*/
- String getContentType();
+ String getContentEncoding();
/**
- * Gets the content encoding.
+ * Gets the content type.
*
- * @return The file content encoding.
+ * @return The file content type.
*/
- String getContentEncoding();
+ String getContentType();
}