001package co.codewizards.cloudstore.core.oio;
002
003public interface FileFilter {
004
005    /**
006     * Tests whether or not the specified file should be
007     * included in a file list.
008     *
009     * @param file the file to be tested. Never <code>null</code>.
010     * @return <code>true</code> if and only if <code>file</code> should be included.
011     */
012    boolean accept(File file);
013}
014