KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > commons > io > filefilter > IOFileFilter


1 /*
2  * Copyright 2002-2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.apache.commons.io.filefilter;
17
18 import java.io.File JavaDoc;
19 import java.io.FileFilter JavaDoc;
20 import java.io.FilenameFilter JavaDoc;
21
22 /**
23  * An interface which brings the FileFilter and FilenameFilter
24  * interfaces together.
25  *
26  * @since Commons IO 1.0
27  * @version $Revision: 1.4 $ $Date: 2004/02/23 04:37:57 $
28  *
29  * @author Henri Yandell
30  * @author Stephen Colebourne
31  */

32 public interface IOFileFilter extends FileFilter JavaDoc, FilenameFilter JavaDoc {
33
34     /**
35      * Checks to see if the File should be accepted by this filter.
36      * <p>
37      * Defined in {@link java.io.FileFilter}.
38      *
39      * @param file the File to check
40      * @return true if this file matches the test
41      */

42     public boolean accept(File JavaDoc file);
43
44     /**
45      * Checks to see if the File should be accepted by this filter.
46      * <p>
47      * Defined in {@link java.io.FilenameFilter}.
48      *
49      * @param dir the directory File to check
50      * @param name the filename within the directory to check
51      * @return true if this file matches the test
52      */

53     public boolean accept(File JavaDoc dir, String JavaDoc name);
54     
55 }
56
Popular Tags