jdt ECLIPSE compiler
hi, i've a problem with compling with the jdt eclipse complier: I use this string in a java file to compiler a .java:
org.eclipse.jdt.internal.compiler.batch.Main.compile("c:/test2.java");
but i should compile like javac compiler, with this string:
pb = new ProcessBuilder("javac", folder.concat("\\*.java"));
that compiles all the .java files located in the folder, is there a method to do it with JDT compiler?

