Searched defs:cutoffDate (Results 1 - 2 of 2) sorted by relevance

/packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/
H A DAgeFileFilter.java80 * @param cutoffDate the threshold age of the files
82 public AgeFileFilter(Date cutoffDate) { argument
83 this(cutoffDate, true);
90 * @param cutoffDate the threshold age of the files
94 public AgeFileFilter(Date cutoffDate, boolean acceptOlder) { argument
95 this(cutoffDate.getTime(), acceptOlder);
H A DFileFilterUtils.java198 * @param cutoffDate the time threshold
202 public static IOFileFilter ageFileFilter(Date cutoffDate) { argument
203 return new AgeFileFilter(cutoffDate);
209 * @param cutoffDate the time threshold
214 public static IOFileFilter ageFileFilter(Date cutoffDate, boolean acceptOlder) { argument
215 return new AgeFileFilter(cutoffDate, acceptOlder);

Completed in 66 milliseconds