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