summaryrefslogtreecommitdiff
path: root/libjava/java/io/FileFilter.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/io/FileFilter.java')
-rw-r--r--libjava/java/io/FileFilter.java22
1 files changed, 10 insertions, 12 deletions
diff --git a/libjava/java/io/FileFilter.java b/libjava/java/io/FileFilter.java
index faa4a7b451f..4cfdb01d6f4 100644
--- a/libjava/java/io/FileFilter.java
+++ b/libjava/java/io/FileFilter.java
@@ -46,23 +46,21 @@ package java.io;
* The method in this interface determines if a particular pathname should
* or should not be included in the pathname listing.
*
- * @version 0.0
- *
* @author Aaron M. Renn (arenn@urbanophile.com)
*/
public interface FileFilter
{
-/**
- * This method determines whether or not a given pathname should be included
- * in a pathname listing.
- *
- * @param pathname The pathname to test
- *
- * @return <code>true</code> if the path should be included in the list, <code>false</code> otherwise.
- */
-public abstract boolean
-accept(File pathname);
+ /**
+ * This method determines whether or not a given pathname should be included
+ * in a pathname listing.
+ *
+ * @param pathname The pathname to test
+ *
+ * @return <code>true</code> if the path should be included in the list,
+ * <code>false</code> otherwise.
+ */
+ public abstract boolean accept(File pathname);
} // interface FileFilter