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/16 18:04:38 UTC

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

Author: ggregory
Date: Wed May 16 16:04:37 2012
New Revision: 1339243

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

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

Modified: commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileTypeSelector.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileTypeSelector.java?rev=1339243&r1=1339242&r2=1339243&view=diff
==============================================================================
--- commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileTypeSelector.java (original)
+++ commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileTypeSelector.java Wed May 16 16:04:37 2012
@@ -25,6 +25,12 @@ public class FileTypeSelector
     /** The FileType */
     private final FileType type;
 
+    /**
+     * Creates a new selector for the given file type.
+     *
+     * @param type
+     *            The file type to select
+     */
     public FileTypeSelector(final FileType type)
     {
         this.type = type;