1. /*
  2. * Copyright 2002-2004 The Apache Software Foundation.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.apache.commons.io.filefilter;
  17. import java.io.File;
  18. import java.io.FileFilter;
  19. import java.io.FilenameFilter;
  20. /**
  21. * An interface which brings the FileFilter and FilenameFilter
  22. * interfaces together.
  23. *
  24. * @since Commons IO 1.0
  25. * @version $Revision: 1.4 $ $Date: 2004/02/23 04:37:57 $
  26. *
  27. * @author Henri Yandell
  28. * @author Stephen Colebourne
  29. */
  30. public interface IOFileFilter extends FileFilter, FilenameFilter {
  31. /**
  32. * Checks to see if the File should be accepted by this filter.
  33. * <p>
  34. * Defined in {@link java.io.FileFilter}.
  35. *
  36. * @param file the File to check
  37. * @return true if this file matches the test
  38. */
  39. public boolean accept(File file);
  40. /**
  41. * Checks to see if the File should be accepted by this filter.
  42. * <p>
  43. * Defined in {@link java.io.FilenameFilter}.
  44. *
  45. * @param dir the directory File to check
  46. * @param name the filename within the directory to check
  47. * @return true if this file matches the test
  48. */
  49. public boolean accept(File dir, String name);
  50. }