diff options
Diffstat (limited to 'libjava/java/io/FilenameFilter.java')
| -rw-r--r-- | libjava/java/io/FilenameFilter.java | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/libjava/java/io/FilenameFilter.java b/libjava/java/io/FilenameFilter.java index df0509adadd..9e95b1e4987 100644 --- a/libjava/java/io/FilenameFilter.java +++ b/libjava/java/io/FilenameFilter.java @@ -44,29 +44,29 @@ package java.io; */ /** - * This interface has one method which is used for filtering filenames - * returned in a directory listing. It is currently used by the - * <code>File.list()</code> method and by the filename dialog in AWT. - * <p> - * The method in this interface determines if a particular file should - * or should not be included in the file listing. - * - * @author Aaron M. Renn (arenn@urbanophile.com) - * @author Tom Tromey <tromey@cygnus.com> - */ + * This interface has one method which is used for filtering filenames + * returned in a directory listing. It is currently used by the + * <code>File.list()</code> method and by the filename dialog in AWT. + * <p> + * The method in this interface determines if a particular file should + * or should not be included in the file listing. + * + * @author Aaron M. Renn (arenn@urbanophile.com) + * @author Tom Tromey <tromey@cygnus.com> + */ public interface FilenameFilter { /** - * This method determines whether or not a given file should be included - * in a directory listing. - * - * @param dir The <code>File</code> instance for the directory being read - * @param name The name of the file to test - * - * @return <code>true</code> if the file should be included in the list, - * <code>false</code> otherwise. - */ + * This method determines whether or not a given file should be included + * in a directory listing. + * + * @param dir The <code>File</code> instance for the directory being read + * @param name The name of the file to test + * + * @return <code>true</code> if the file should be included in the list, + * <code>false</code> otherwise. + */ boolean accept(File dir, String name); } // interface FilenameFilter |
