1 package groovy.util; 2 3 import java.util.List; 4 5 public interface IFileNameFinder { 6 List getFileNames(String basedir, String pattern); 7 }