System.err.println(" <classname> Load this particular class");
}
public static void addClassFilesFromFolder(File dir, String prefix, List<String> list) {
if (!dir.exists()) {
throw new SetupException(dir + " does not exist");
}
if (!dir.isDirectory()) {
throw new SetupException(dir + " is not a directory");
}
File[] files = dir.listFiles(new FileFilter() {
public boolean accept(File pathname) {
return pathname.getName().endsWith(".class") || pathname.isDirectory();
}