Creates a new FileFilter that returns all Files that have been modified since the date specified.paramdate the date that serves as the lower bound of the region of interest m_date = date;
m_date = date;
Tests if a specified file has been modified since a specified date.paramdir the directory in which the file was foundparamname the name of the filereturntrue if the file meets the criteria, false otherwise return (new File(dir,name).lastModified() >= m_date);
return (new File(dir,name).lastModified() >= m_date);