John Munsch - 2003-09-11

Logged In: YES
user_id=37658

I went ahead and figured it out myself. In the Main.java
file the following:

generator.eval( _controlTemplateResourceName,
new OutputStreamWriter(System.out) );

should read like this:

generator.eval( _controlTemplateResourceName,
_controlOutput);

Then the output goes to the specified file as it should.