Congratulations for your job!

I'd made small changes in the code to resolve minor problems and would like to share.

To stop with the warning about the import that was not being used i commented out the line:
indent(0, "import java.util.*;");
in writeManager method form the PreparedManagerWriter class.
Also commented out the line:
writer.println("import java.util.*;");
in writePreamble method for the CodeWriter class for the same reason.

To stop with a error from Tomcat complaining about "*Bean" classes not to be serializable while loading my webapp, i changed the code for the writeCore method on CodeWriter class to call the writePreamble method passing to it information that make all *Bean classes implement the Serializable interface. The code follows as above:
-----------
// // Start class
//writePreamble(); // Commented out the old way

String pImports[] = {"java.io.Serializable"};
String strExtends = null;
String pImplements[] = {"Serializable"};
// Start class
writePreamble(pImports, strExtends, pImplements);
-----------

That way every thing is working fine, at least until now.

Is this right?

Best regartds