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