示例#1
0
 public List<String> getClassNamesMatchingGlob(String glob) throws IOException {
   return getNamesMatchingRegex(Util.globToRegexp(glob), true);
 }
示例#2
0
 public List<String> getFileNamesMatchingGlob(String glob) throws IOException {
   return getNamesMatchingRegex(Util.globToRegexp(glob), false);
 }