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