diff options
| author | Michael Koch <konqueror@gmx.de> | 2003-03-18 06:00:25 +0000 |
|---|---|---|
| committer | Michael Koch <mkoch@gcc.gnu.org> | 2003-03-18 06:00:25 +0000 |
| commit | f4f5d1d62161cc99ecfc68495d501342aa1e61dc (patch) | |
| tree | 9f83602fa5fd87c7741475487fab1b0b3a3e47ab /libjava/java/io/FileFilter.java | |
| parent | 61f1ed592c606d1d2ae272292ad4dbe37d71d78b (diff) | |
BufferedReader.java, [...]: Merged from classpath.
2003-03-18 Michael Koch <konqueror@gmx.de>
* java/io/BufferedReader.java,
java/io/BufferedWriter.java,
java/io/ByteArrayOutputStream.java,
java/io/FileFilter.java,
java/io/FilePermission.java,
java/io/FileReader.java,
java/io/FileWriter.java,
java/io/FilenameFilter.java,
java/io/FilterInputStream.java,
java/io/FilterOutputStream.java,
java/io/FilterReader.java,
java/io/FilterWriter.java,
java/io/ObjectInput.java,
java/io/ObjectInputValidation.java,
java/io/ObjectOutput.java,
java/io/ObjectStreamField.java,
java/io/PipedInputStream.java,
java/io/PipedReader.java,
java/io/PrintWriter.java,
java/io/PushbackReader.java,
java/io/Reader.java,
java/io/SerializablePermission.java,
java/io/StringReader.java,
java/io/Writer.java:
Merged from classpath.
From-SVN: r64525
Diffstat (limited to 'libjava/java/io/FileFilter.java')
| -rw-r--r-- | libjava/java/io/FileFilter.java | 22 |
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 |
