~ubuntu-branches/ubuntu/karmic/commons-io/karmic

« back to all changes in this revision

Viewing changes to src/java/org/apache/commons/io/filefilter/IOFileFilter.java

  • Committer: Bazaar Package Importer
  • Author(s): Wolfgang Baer
  • Date: 2005-10-16 13:44:21 UTC
  • Revision ID: james.westby@ubuntu.com-20051016134421-v2gfddy6iovz449t
Tags: upstream-1.0
ImportĀ upstreamĀ versionĀ 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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;
 
19
import java.io.FileFilter;
 
20
import java.io.FilenameFilter;
 
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, FilenameFilter {
 
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 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 dir, String name);
 
54
    
 
55
}