OSDN Git Service

13f434461a0aee7f84a846f1d7b3f850f29c2cd0
[pf3gnuchains/gcc-fork.git] / libjava / java / io / FilenameFilter.java
1 // FilenameFilter.java - Compute subset of list of file names
2
3 /* Copyright (C) 1998, 1999  Red Hat, Inc.
4
5    This file is part of libgcj.
6
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
9 details.  */
10
11 package java.io;
12
13 /**
14  * @author Tom Tromey <tromey@cygnus.com>
15  * @date September 24, 1998 
16  */
17
18 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
19  * "The Java Language Specification", ISBN 0-201-63451-1
20  * Status:  Complete to 1.1.
21  */
22
23 public interface FilenameFilter
24 {
25   public abstract boolean accept (File dir, String name);
26 }