public void process(String exepath, String[] params) throws Exception {
log.debug("entered");
if (helpRequested()) {
PrintWriter2 out = new PrintWriter2(new BufferWriter(getStdOut()));
out.println("Usage: antbuild [--help] [-o] path param1, param2, ..., paramN");
out.println(" -o : display output of the building process.");
out.println(" path : path to the \"build.xml\" file.");
out.println();
out.println(" --help : this help.");
out.flush();
out.close();
log.debug("done");
return;
}
pout = new PrintWriter2(new BufferedWriter(new BufferWriter(getStdOut())));
String buildPath = null;
boolean displayOutput = false;
StringBuffer args = new StringBuffer();