Home | History | Annotate | Download | only in filefilter

Lines Matching refs:File

3  * contributor license agreements.  See the NOTICE file distributed with

5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
19 import java.io.File;
30 * File dir = new File(".");
49 * Constructs a new size file filter for files equal to or
60 * Constructs a new size file filter for files based on a certain size
78 * Checks to see if the size of the file is favorable.
81 * file <b>IS NOT</b> selected.
83 * file <b>IS</b> selected.
85 * @param file the File to check
88 public boolean accept(File file) {
89 boolean smaller = file.length() < size;
94 * Provide a String representaion of this file filter.