예제 #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);
 }