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.java34
1 files changed, 17 insertions, 17 deletions
diff --git a/libjava/java/io/FileFilter.java b/libjava/java/io/FileFilter.java
index 4cfdb01d6f4..68950d3b6c9 100644
--- a/libjava/java/io/FileFilter.java
+++ b/libjava/java/io/FileFilter.java
@@ -39,27 +39,27 @@ exception statement from your version. */
package java.io;
/**
- * This interface has one method which is used for filtering pathnames
- * returned in a pathname listing. It is currently used by the
- * <code>File.listFiles()</code> method.
- * <p>
- * The method in this interface determines if a particular pathname should
- * or should not be included in the pathname listing.
- *
- * @author Aaron M. Renn (arenn@urbanophile.com)
- */
+ * This interface has one method which is used for filtering pathnames
+ * returned in a pathname listing. It is currently used by the
+ * <code>File.listFiles()</code> method.
+ * <p>
+ * The method in this interface determines if a particular pathname should
+ * or should not be included in the pathname listing.
+ *
+ * @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.
- */
+ * 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