String[] sourcePath = new String[args.length - 2];
System.arraycopy(args, 2, sourcePath, 0, sourcePath.length);
Class<?> clazz = Class.forName(clazzName);
gen.setSourcePath(sourcePath);
gen.setClassSourcePath(classSource);
gen.generate(new ReflectClass(clazz));
} catch (Exception e) {
System.out.println("Problem");
e.printStackTrace(System.out);
}
}