Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8dc07ce3100c46965bb9a61fb932a07c6db27c01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*******************************************************************************
 * Copyright (c) 2006, 2018 IBM Corporation and others.
 * 
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - Jeff Briggs, Henry Hughes, Ryan Morse
 *******************************************************************************/

package org.eclipse.linuxtools.systemtap.structures;

import java.io.File;
import java.io.FileFilter;

public class CCodeFileFilter implements FileFilter {
    /**
     * Checks a file type and only passes it (returns true) if it is either a directory, a .c, or a .h
     * file type.
     *
     * @param f The file to check.
     *
     * @return A boolean value indicating whether or not to display the file.
     */
    @Override
    public boolean accept(File f) {
        if(null == f)
            return false;
        return accept(f.getName(), f.isDirectory());
    }

    /**
     * Checks a file type and only passes it (returns true) if it is either a directory, a .c, or a .h
     * file type.
     *
     * @param name The name of the file
     * @param isDir Is this file a directory?
     *
     * @return A boolean value indicating whether or not to display the file.
     *
     * @since 1.1
     */
    public boolean accept(String name, boolean isDir) {
        String lower = name.toLowerCase();
        return isDir ||
                lower.endsWith(".c") || //$NON-NLS-1$
                lower.endsWith(".h"); //$NON-NLS-1$
    }

    public String getDescription() {
        return ".c, .h files"; //$NON-NLS-1$
    }
}

Back to the top