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;