1 16 package org.apache.commons.io.filefilter; 17 18 import java.io.File ; 19 20 29 public class FalseFileFilter implements IOFileFilter { 30 31 32 public static final IOFileFilter INSTANCE = new FalseFileFilter(); 33 34 37 protected FalseFileFilter() { 38 } 39 40 46 public boolean accept(File file) { 47 return false; 48 } 49 50 57 public boolean accept(File dir, String name) { 58 return false; 59 } 60 61 } 62 | Popular Tags |