diff options
| author | Aaron M. Renn <arenn@urbanophile.com> | 2003-04-07 12:25:08 +0000 |
|---|---|---|
| committer | Michael Koch <mkoch@gcc.gnu.org> | 2003-04-07 12:25:08 +0000 |
| commit | 30da09694b77a86b0790f9480cf934120c5258d3 (patch) | |
| tree | ec6278305260bb163e480ed061dd389a1ff6db28 /libjava/java/io/FileFilter.java | |
| parent | d5019ba399334c5064315c9d25d1e4e7bed83b77 (diff) | |
2003-04-07 Aaron M. Renn (arenn@urbanophile.com)
* java/io/ObjectStreamException
* java/io/FileFilter
* java/io/FilenameFilter
* java/io/ObjectInput
* java/io/ObjectOutput
* java/io/ObjectStreamConstants
Minor doc fixes, format fixes, spelling corrections, etc.
* java/io/DataInput
Corrected code samples in Javadocs to match reality
* java/io/DataOutput
* java/io/ObjectInputValidation
Major documentation fixes - all Javadocs re-written or updated
From-SVN: r65329
Diffstat (limited to 'libjava/java/io/FileFilter.java')
| -rw-r--r-- | libjava/java/io/FileFilter.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libjava/java/io/FileFilter.java b/libjava/java/io/FileFilter.java index 68950d3b6c9..de6feb1aea8 100644 --- a/libjava/java/io/FileFilter.java +++ b/libjava/java/io/FileFilter.java @@ -1,5 +1,5 @@ /* FileFilter.java -- Filter a list of pathnames - Copyright (C) 1998 Free Software Foundation, Inc. + Copyright (C) 1998,2003 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -41,12 +41,14 @@ 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. + * <code>File.listFiles(FileFilter)</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) + * + * @see File#listFiles(java.io.FileFilter) */ public interface FileFilter { |
